// JavaScript Document


function popper(url,name){
 	var MyWindow = window.open(url,name,"width=1024,height=768,scrollbars=yes,resizable=yes,dependent=yes");
	
	MyWindow.focus();
}

function popo(url,name,height,width){
	var MyWindow = window.open(url,name,"width="+width+",height="+height+",scrollbars=no,resizable=yes,dependent=no");
	MyWindow.focus();
}

