//===========================================================================//
function wopen_confirm(msg,urlstr,w,h) {
   if(confirm(msg)==true) {
	    window.open(urlstr,"_blank","width="+w+",height="+h+",top="+((screen.availHeight/2)-(h/2))+",left="+((screen.availWidth/2)-(w/2))+",toolbars=no,menubar=no,scrollbars=yes,status=no,resizable=yes");
		 return true;
   }
	 return false;
}
//===========================================================================//
function wopen(url,w,h) {
  w+=32;
  h+=30+32;
  x=((screen.availWidth/2)-(w/2));
  y=((screen.availHeight/2)-(h/2));
  window.open(url,"_blank",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+w+',height='+h+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
}
//===========================================================================//
function wopen_blank(url) {
  window.open(url,"_blank");
}
//===========================================================================//
