﻿//function winOpen (w,h,na){
//	var win = window.open("",na,"width="+w+",height="+window.screen.availHeight*0.95+",scrollbars=yes");
//	var x = (window.screen.availWidth/2)-(w/2);
	//var y = (window.screen.availHeight/2)-(h/2);
//	win.moveTo(x,y);
//}



function popupWin(url,title,width,height){
    var width2 = parseInt(width) + 30;
    var height2 = parseInt(height) + 30;
    var etc = "width=" + width2 + ",height=" + height2 + ",scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,directions=0,status=0";
    w=window.open(url,'popup',etc);
  }

