var popupMessage = "You are from " + popupLang + " watching a site from " + languageCode + ".";
function obscureScreen(isCh) {
	//iframe hack for ie6
	var objIframe = document.createElement('iframe');
	//objIframe.src = "javascript:'<html></html>'";
	objIframe.src = "blank.html";
	objIframe.scrolling="no";
	objIframe.frameBorder="0";	
	objIframe.style.position = "absolute";
	objIframe.style.top = "0";
	objIframe.style.left = "0";
	objIframe.style.zIndex = "1000";
	objIframe.style.width = "100%";
	objIframe.style.height = "100%";
	objIframe.style.backgroundColor = "#000"; 
	objIframe.style.opacity = "0.5";
    if(/MSIE/.test(navigator.userAgent))
      	objIframe.style.filter = "alpha(opacity=50)";
 	objIframe.setAttribute("id", "overIframe");
   	document.getElementById('body').appendChild(objIframe);

	var objOverlay = document.createElement('div');
	objOverlay.style.position = "absolute";
	objOverlay.style.top = "0";
	objOverlay.style.left = "0";
	objOverlay.style.zIndex = "1001";
	objOverlay.style.width = "100%";
	objOverlay.style.height = "100%";
	objOverlay.style.backgroundColor = "#000"; 
	objOverlay.setAttribute("id", "overLay");
	objOverlay.style.opacity = "0.5";
    if(/MSIE/.test(navigator.userAgent))
      	objOverlay.style.filter = "alpha(opacity=50)";
    document.getElementById('body').appendChild(objOverlay);
    if(isCh)
    	document.getElementById('languagePopupCh').style.display = "block";
    else
    	document.getElementById('languagePopup').style.display = "block";
}
function clearScreen(isCh) {
    if(isCh)
    	document.getElementById('languagePopupCh').style.display = "none";
    else
    	document.getElementById('languagePopup').style.display = "none";
	objDiv = document.getElementById('overLay');
	document.getElementById('body').removeChild(objDiv);
	objIframe = document.getElementById('overIframe');
	document.getElementById('body').removeChild(objIframe);
}
function obscureSkycafe() {
	//iframe hack for ie6
	var objIframe = document.createElement('iframe');
	//objIframe.src = "javascript:'<html></html>'";
	objIframe.src = "blank.html";
	objIframe.scrolling="no";
	objIframe.frameBorder="0";	
	objIframe.style.position = "absolute";
	objIframe.style.top = "0";
	objIframe.style.left = "0";
	objIframe.style.zIndex = "1000";
	objIframe.style.width = "100%";
	objIframe.style.height = "100%";
	objIframe.style.backgroundColor = "#000"; 
	objIframe.style.opacity = "0.5";
    if(/MSIE/.test(navigator.userAgent))
      	objIframe.style.filter = "alpha(opacity=50)";
 	objIframe.setAttribute("id", "overIframe");
   	document.getElementById('body').appendChild(objIframe);

	var objOverlay = document.createElement('div');
	objOverlay.style.position = "absolute";
	objOverlay.style.top = "0";
	objOverlay.style.left = "0";
	objOverlay.style.zIndex = "1001";
	objOverlay.style.width = "100%";
	objOverlay.style.height = "100%";
	objOverlay.style.backgroundColor = "#000"; 
	objOverlay.setAttribute("id", "overLay");
	objOverlay.style.opacity = "0.5";
    if(/MSIE/.test(navigator.userAgent))
      	objOverlay.style.filter = "alpha(opacity=50)";
    document.getElementById('body').appendChild(objOverlay);
   	document.getElementById('skycafePopup').style.display = "block";
}
function clearSkycafe() {
   	document.getElementById('skycafePopup').style.display = "none";
	objDiv = document.getElementById('overLay');
	document.getElementById('body').removeChild(objDiv);
	objIframe = document.getElementById('overIframe');
	document.getElementById('body').removeChild(objIframe);
}