function openFullWin(url,name){
	//var theWidth=screen.availWidth - 10;
	//var theHeight=screen.availHeight * 2 - screen.height;
	//var theWidth=screen.availWidth;
	//var theHeight=screen.availHeight;
	var theWidth=1024;
	var theHeight=650;
	var isScroll =0;
	var isFullscreen =0;
	var theX=(screen.availWidth / 2) - theWidth/2;
	var theY=(screen.availHeight / 2) - theHeight/2;
	var newwin=window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,titlebar=1,scrollbars='+isScroll+',fullscreen='+isFullscreen+',width='+theWidth+',height='+theHeight+',left='+theX+',top='+theY+',screenX='+theX+',screenY='+theY);
	//window.close();
}

