
// Marsh Pat 08/03/04
function resizeWindow(theURL,winName,w,h)
	{
		var features;
		var setWidth = w;
		var setHeight = h;
		
		var winl = (screen.width - setWidth) / 2;
		var wint = (screen.height - setHeight) / 2;
	
				wint = wint - 35;
				features = 'width='+setWidth+',height='+setHeight+',top='+wint+',left='+winl+',scrollbars=yes';
         		popupWindow = window.open(theURL,winName,features);
				popupWindow.resizeTo(setWidth,setHeight);
		
		if (window.focus) {popupWindow.focus()}
	}
