<!--
if(parent!=self)
{
	parent.location=self.location
}
//browser check
var IE4=(document.all)?1:0
var NS4=(document.layers)?1:0
var NS6=(document.getElementById)?1:0

//setup syntax to each browser
if((NS6) && (IE4))
{
	L_Ref = "document.getElementById('";
	L_End_Ref = "')";
	Style_Ref = ".style";
	Show_Type = ".firstChild.nodeValue=note";
}
else if(IE4)
{
	L_Ref = "document.all['";
	L_End_Ref = "']";
	Style_Ref = ".style";
	Show_Type = ".iNSerHTML=note";
}
else if(NS4)
{
	L_Ref = "document.layers['";
	L_End_Ref = "']";
	Style_Ref = "";
}
else if(NS6)
{
	L_Ref = "document.getElementById('";
	L_End_Ref = "')";
	Style_Ref = ".style";
	Show_Type = ".firstChild.nodeValue=note";
}

var Layer_Name="";
//show layer on mouseover
function Show_Layer(Layer_Name)
{
	eval(L_Ref + Layer_Name + L_End_Ref + Style_Ref + ".visibility='visible'");
}

//hide layer on mouseout
function Hide_Layer(Layer_Name)
{
	eval(L_Ref + Layer_Name + L_End_Ref + Style_Ref + ".visibility='hidden'");
}

//display text in boxes
var note="";
var Box_Name="";
function showbox(note,Box_Name)
{
	window.status=note;
	if(NS4)
	{
		eval(L_Ref + Box_Name + L_End_Ref + ".document.write(note)");
		eval(L_Ref + Box_Name + L_End_Ref + ".document.close()");
	}
	else
	{
		eval(L_Ref + Box_Name + L_End_Ref + Show_Type);
	}
}
//-->