		// browser detection
		var browserNew = (document.getElementById)? true:false;
		var ns4 = (document.layers)? true:false;
		var ie4 = (document.all)? true:false;
		var Macintosh = navigator.userAgent.indexOf('Mac')>0;
		
		// resize function
		function resizeWin() {
			widthMod = 0;
			heightMod = 0;
			if (!Macintosh) {
				widthMod = 29;
				heightMod = 48;
			}
			parent.window.resizeTo(750+widthMod,640+heightMod);
		}
		
		// things to do after the page loads
		function initPage() {
			if(!ns4)resizeWin();
		}
		
		// initializes
		window.onload = initPage; 
