// JavaScript Document
var HideTime=20000; 
var HideMaster=true;
var HideMaster2=false; 
var HideCont; 
function SW(text,obj)
{
document.getElementById("Link_Over").innerHTML=text; 
obj.onmouseout = function()
	{
	document.getElementById("Link_Over").innerHTML=''; 
	obj.onmouseout = null; 
	}
}


function MTPPopAd(obj,ref)
{
if (typeof obj == "string") obj=document.getElementById(obj); 
if (obj !== null) 
	{
	if (obj.style.display == "none")
		{
		HideMaster=false;
		obj.style.display=""; 
		
			obj.onmouseover=function()
				{
				HideMaster=false; 
				}
			obj.onmouseout= ref.onmouseout =function()
			{
			HideMaster=true;
			var HideCont=setTimeout(function()
				{
				if (HideMaster == true)
					{
					obj.style.display="none"; 
					obj.onmouseover=null;
					obj.onmouseout=null; 
					ref.onmouseout=null; 
					}
				}, HideTime); 
			}
		}	
	}
}

function MTPPopAd2(obj,ref)
{
if (typeof obj == "string") obj=document.getElementById(obj); 
if (obj !== "") 
{
if (obj.style.display == "")
	{
	HideMaster2=false;
	obj.style.display="none"
	
		obj.onmouseover=function()
			{
			HideMaster=true;
			}
		obj.onmouseout= ref.onmouseout =function()
			{
			HideMaster=true;
			}

	}
}
}
