function openInfoPage(url,w,h)
{
	window.open( url, 'info_page', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=1,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 ) ;
}

