function FunResize() { 
  	window.moveTo(((screen.width - 1024) / 2),((screen.height - 768) / 2)) ;
	window.resizeTo(1024, 768);
}

function openWin(url, windowname, w, h, blnstatus, blnscroll)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2-10;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+', '
	win= window.open(url, windowname, winprops + "status="+blnstatus+",toolbar=no,menubar=no,location=no,directories=0,scrollbars="+blnscroll+",resizable=no");
	win.focus();
}

function openWin_full(url, w, h,blnscroll)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+', '
	win= window.open(url, "PopupWindow", winprops + "status=no,toolbar=yes,menubar=yes,location=no,directories=0,scrollbars="+blnscroll+",resizable=no");
	win.focus();
}