// JavaScript Document
ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;

function Show_DIV(id) 
{
	if(document.getElementById(id)!=null)
	{
		document.getElementById(id).style.visibility = "visible"
	}
}

function Hide_DIV(id) 
{
	if(document.getElementById(id)!=null)
	{
		document.getElementById(id).style.visibility = "hidden"
	}
}

function Show_DIV1(id,tmp,top) 
{
	if(document.getElementById(id)!=null)
	{
		document.getElementById(id).style.visibility = "visible"
		document.getElementById(id).style.top = top+(tmp*15)
	}
}

