// JavaScript Document

// <![CDATA[ 

	function NewWindow(mypage, myname, w, h, scroll) {
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		var winprops = ('height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable');
		var win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
	function websiteWindow(strURL) {
		var winl = screen.availWidth;
		var wint = screen.availHeight;
		winprops = 'height='+wint+',width='+winl+',top=0,left=0,scrollbars=yes,resizable=0'
		var uploadWin = window.open(strURL, 'websiteWindow',winprops);
	}


	function legalWindow(strURL) {
		var w = 820;
		var h = 590;
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		var uploadWin = window.open(strURL, 'legalWindow', 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=0');
		uploadWin.focus();
	}

// ]]>
