/*
 * Window Opener
 */			
			
	/* switch back to 1600 x 1067 or something with same aspect once img size is figured out */		
			
			app  = navigator.appName;
			ver  = navigator.appVersion;
			vnum = parseFloat(ver);
			mook = (app == "Microsoft Internet Explorer") && (vnum >= 4.0 )
			/*window.onload = maxWindow;*/
			    function openwinP(page) {
			        if (mook) {
			            if (screen.availHeight >= 768) {
			                // IE above 768 height, scrollbars not wanted
			                //alert(screen.availHeight + "1");
			                window.open(page, 'popupA', 'location=no,status=no,toolbar=no,menubar=no,scrollbars=no,top=0,left=0,width=1240,height=940,resizable=1');
			            }
			            else {
			                // IE below 768 height, scrollbars wanted
			                //alert(screen.availHeight + "2");
			                window.open(page, 'popupB', 'location=no,status=no,toolbar=no,menubar=no,scrollbars=yes,top=0,left=0,width=1240,height=940,resizable=1');
			            }
			        }
			        else {
			            if (screen.availHeight >= 768) {
			                // NOT IE above 768 height, scrollbars wanted
			                //alert(screen.availHeight + "3");
			                window.open(page, 'popupC', 'location=no,status=no,menubar=yes,scrollbars=no,width=1240,height=940,resizable=1');
			            }
			            else {
			                // NOT IE below 768 height, scrollbars wanted
			                //alert(screen.availHeight + "4");
			                window.open(page, 'popupD', 'location=no,status=no,menubar=yes,scrollbars=yes,width=1240,height=940,resizable=1');
			            }
			        }

			    }
		    
		
