var isFirstTime=true;

function ClosePopup() {
	window.top.hideVideoPlayer();
}


function showPopUp(showURL,height,width){  
			initPopUp();						
			showPopWin(showURL, height , width, null);
}

function showDesignPopUp(showURL,height,width,topheight){
		if(isFirstTime){
			initDesignPopUp();
		}
			showPopWin(showURL, height , width, topheight);
			var player=popupFrame.document.getElementById("playerContainer");
			var isPlayer = player!=null;
			if(isPlayer) {
				popupFrame.document.getElementById("playerContainer").style.visibility='visible';
			}
			return false;
}