//window open
var win3;
function WinOpen3(NUM,ww,hh){
	if (arguments.length == 3){
		win3=window.open(NUM+'.html','WinName','toolbar=1,location=0,scrollbars=1,resizable=1, width='+ ww + ',height=' +hh+ ',left=0, top=0,screenX=0,screenY=0');
	  }else{
		win3=window.open(NUM+'.html','WinName','toolbar=1,location=0,scrollbars=1, resizable=1');
	}
	win3.focus();
}
