// JavaScript Document

if (navigator.userAgent.indexOf("Opera") != -1 && document.getElementById)
	type="OP";
if (document.all)
	type="IE";
if (document.layers)
	type="NN";
if (!document.all && document.getElementById)
	type="MO";

function ShowElement(id, action)
	{
 	if (type=="IE")
		eval("document.all." + id + ".style.display='" + action + "'");
 	if (type=="NN")
		eval("document." + id + ".display='" + action + "'");
 	if (type=="MO" || type=="OP")
		eval("document.getElementById('" + id + "').style.display='" + action + "'");
	}

