<!--//
	function openWindowDemo(url,name) {
		var windowWidth = 950; <!--screen.availWidth;-->
		var windowHeight = 650; <!-- screen.availHeight; -->
		
		var scrollVisible = 0;
		
		//if ((windowWidth < 950) && (windowHeight < 640)) { scrollVisible = 1; }
		
	
		var strAttributes = "width="+windowWidth+",height="+windowHeight+"location=0,menubar=0,resizable=0,status=0,toolbar=0,scrollbars="+scrollVisible;
		var newWindow = window.open(url,name,strAttributes);	
		newWindow.moveTo(0,0);
		
		if (window.focus) { newWindow.focus() ;}
		
		return false;
	}
	
	function openWindow(url,name, width, height) {
		var windowWidth = width; <!--screen.availWidth;-->
		var windowHeight = height; <!-- screen.availHeight; -->
		
		var scrollVisible = 0;
		
		if ((windowWidth < 950) && (windowHeight < 640)) { scrollVisible = 1; }
		
	
		var strAttributes = "width="+windowWidth+",height="+windowHeight+"location=0,menubar=0,resizable=0,status=0,toolbar=0,scrollbars="+scrollVisible;
		var newWindow = window.open(url,name,strAttributes);	
		newWindow.moveTo(0,0);
		
		if (window.focus) { newWindow.focus() ;}
		
		return false;
	}
	// -->
        <!--
        // -----------------------------------------------------------------------------
        // Globals
        // Major version of Flash required
        var requiredMajorVersion = 8;
        // Minor version of Flash required
        var requiredMinorVersion = 0;
        // Minor version of Flash required
        var requiredRevision = 0;
        // -----------------------------------------------------------------------------
// -->