﻿// JScript File
var status=0;
	function loadPopup(){
		//alert("loadpop");
		if(status==0){
			$("#backgroundPopup").css({"opacity": "0.5"});				
			$("#backgroundPopup").fadeIn("slow");
			//$("#popupContainer").fadeIn("slow");
			$("#flvContainer").fadeIn("slow");
			status=1;
		}		
	}
	function disablePop(){
		//alert("disablePop");
		if(status==1){
			$("#backgroundPopup").fadeOut("slow");
			//$("#popupContainer").fadeOut("slow");
			$("#flvContainer").fadeOut("slow");
			status=0;
		}
	}
	function centerpop(){
		//alert("centerpop");	 
		var clientWidth = document.documentElement.clientWidth;
		var clientHeight = document.documentElement.clientHeight;
		//var popHeight = $("#popupContainer").height();
		//var popWidth =$("#popupContainer").width();
		var popHeight = $("#flvContainer").height();
		var popWidth =$("#flvContainer").width();

		$("#popupContainer").css({
			"position":"absolute", "top": clientHeight/2 - popHeight/2, "left": clientWidth/2-popWidth/2		
		});
		$("#flvContainer").css({
			"position":"absolute", "top": clientHeight/2 - popHeight/2, "left": clientWidth/2-popWidth/2		
		});
		
		$("#backgroundPopup").css({"height": clientHeight});
		
		loadPopup();
		}
		
		
		


