<!-- begin script
// JavaScript Document
	// Check browser
	if (navigator.userAgent.indexOf("MSIE") != -1)
		isIE = true;
	else
		isIE = false;
	// Check platform
	if (navigator.platform.indexOf("Mac") != -1)
		isMac = true;
	else
		isMac = false;
	// Check the screen size for calculations
	// for NN4/IE4
	if (isIE && self.screen) {
			screenWidth = screen.availWidth;
			screenHeight = screen.availHeight;
	} 
	else if (self.screen) {     
			screenWidth = screen.availWidth;
			screenHeight = screen.availHeight;
	}
	
	// for NN3 w/Java
	else if (self.java) {   
		   var javakit = java.awt.Toolkit.getDefaultToolkit();
		   var scrsize = javakit.getScreenSize();       
		   screenWidth = scrsize.width; 
		   screenHeight = scrsize.height; 
	}
	else {
	// N2, E3, N3 w/o Java (Opera and WebTV)
	screenWidth = 800;
	screenHeight = 600 ;
	}
	
	function openMovieMiddleAbsolute(url, popupName, absWidth, absHeight) {
		if (screenWidth != '?') {
			if (screenWidth > absWidth) {
				popupWidth = absWidth;
				popupWidth = Math.round(popupWidth);
			} else {
				popupWidth = screenWidth-50;
			}
			if (screenHeight > absHeight) {
				popupHeight = absHeight;
				popupHeight = Math.round(popupHeight);
			} else {
				popupHeight = screenHeight-50;
			}
		}
		popupLeft = (screenWidth / 2) - (popupWidth / 2);
		popupLeft = Math.round (popupLeft);
		popupTop = (screenHeight / 2) - (popupHeight / 2);
		popupTop = Math.round(popupTop);
	
		popupSpecs = "toolbar=no,location=0,directories=0,statusbar=0,menubar=0,resizable=0,width=" + popupWidth + ",height=" + popupHeight + ",left=" + popupLeft + ",top=" + popupTop;
	
		popupName = window.open(url,popupName,popupSpecs);
		popupName.focus();
	}
// end script -->
