// JavaScript Document
function MakeNewWin(PName,Wide,Tall) {
	 var winOpts = 'resizeable=yes,scrollbars=yes,left=50,top=50,width='+Wide+',height='+Tall;
	// alert("wide value " + Wide);
	// alert("tall value " + Tall);
	// alert("win opts value " + winOpts);
	PopWindow = window.open(PName,'AmericanBluegreen', winOpts)	
	
}
//-->