function newWindows(theURL,name,w,h)
{
	Feature='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h;
	EnqWin=window.open(theURL,name,Feature);
	EnqWin.focus();
	if(EnqWin.opener==null){
		EnqWin.opener=window;
	}
}
function resizeAndurl(width,height,theURL){
		window.resizeTo(width,height);
		goURL(theURL);
		
}
function goURL(theURL){
	window.location=theURL;
}
