var popupAd = null;
function showPopup(){

	if(popupAd==null){
		//create the popup;
		popupAd = document.createElement("div");
		popupAd.id = 'popup';
		popupAd.innerHTML = "Get your desired position in 7 days !!!";
		
		document.getElementById("wrap").appendChild(popupAd);
		
		pW = popupAd.offsetWidth;
		pH = popupAd.offsetHeight;
		bW = document.body.scrollWidth;
		bH = document.body.scrollHeight;
		
		popupAd.style.left = parseInt((bW/2) - (pW/2)) + 'px';
		popupAd.style.top = parseInt((bH/2) - (pH/2)) + 'px';
		
		//popupAd.style.visibility= 'visible';
		$("#popup").fadeIn("slow");
		popupAd.onclick = function(){
			document.location = siteurl + '/member-signup/';
		}
		popupAd.onmouseover = function(){this.style.backgroundColor='#f9f9f9';}
		popupAd.onmouseout = function(){this.style.backgroundColor='#fff';}
		//document.body.appendChild(popupAd);
	}	
	
}

function closePopup(){
	if(popupAd!=null){
		document.getElementById("wrap").removeChild(popupAd);
		popupAd = null;
	}
}
$(document).ready(function(){
	if(crt_section=='home'){
		showPopup();
		setTimeout("closePopup()",30000);
	}
	
});
