function openInfoPage( url, w, h )
{
	window.open( url, 'info_page', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=' + w + ',height=' + h ) ;
}

function openNewWindow( theURL, winName, w, h )
{
	features = 'left=10, top=10, width=' + w + ',height=' + h + ',innerwidth=' + w + ',innerheight=' + h ;
	window.open( theURL, winName, features ) ;
}


	function popup(url, name, w, h, x, y)
	{	if( (name == "") || (name == null) ){	var Winname = "Popup";	}
		else	{	var Winname = name;	}
		window.open(url, Winname, 'resizable=yes,toolbar=no,location=no,status=yes,scrollbars=yes,menubar=no,width='+w+',height='+h+',left='+x+',top='+y);
	}