function showpopup() 
{ 
	var cookie_name = 'popped';
	var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)' );
	//results = false;
	if ( !results )
	{
		obj = document.getElementById("divOverLay");
		obj.style.visibility = "visible";
		obj.style.position = "absolute";
		obj.style.height = "100%";
		obj.style.width = "100%";
		obj.style.zIndex = "999999";
		popUpAndPosition()
		document.cookie = "popped=yes";
	}
}

function popUpAndPosition()
{
try{
	winObj = document.getElementById("divDaBox");
	winObj.style.position = "absolute";
	winObj.style.top = "100px";
	winObj.style.zIndex = "1000000"
	var popUpWidth = "100";
	
	var bodyWidth = document.body.offsetWidth;
	var bodyHeight = document.body.clientHeight;
	
	var widthOffset = ( (bodyWidth - popUpWidth) / 2 );
	winObj.style.backgroundColor = "#ff6501";
	//winObj.style.left = ( widthOffset - 100 ) + "px";
	winObj.style.left = "0px";
	winObj.style.width = popUpWidth + "%";
	winObj.style.height = "150px";
	winObj.style.top = ( ( bodyHeight / 2) - 100 ) + "px";
	winObj.style.visibility = "visible";
	//winObj.style.border = "medium solid #F7971D"
	
	picObj = document.getElementById("divPicture");
	
	closeObj = document.getElementById("crossbarClose");
	closeObj.style.zIndex = "1000001"
	
}
catch(e)
{}
}
function closePopUp( divLocation )
{
		obj = document.getElementById("divOverLay");
		obj.style.visibility = "hidden";
		winObj.style.visibility = "hidden";
		if ( divLocation )
		{
			location.href = "index.php#" + divLocation;
			subleftNavActions( divLocation )
			//leftNavActions( divLocation )
		}
}