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 isScroll =0;	var isFullscreen =0;	var newwin=window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,titlebar=1,scrollbars='+isScroll+',fullscreen='+isFullscreen+',width='+theWidth+',height='+theHeight+',left=0,top=0,screenX=0,screenY=0');	//window.close();}
