if(document.getElementById){	document.writeln('<style type="text/css" media="all">');	document.writeln('<!--');	document.writeln('.sidehide{display:none;position:absolute;left:10px;background-color:#FFF0F0;}');	document.writeln('-->');	document.writeln('</style>');	document.writeln('<script language="JavaScript">');	document.writeln('<!--');	document.writeln('var setid = "sprit";');	document.writeln('// -->');	document.writeln('</script>');	}	function showHide(id,n){	var elm_visible = document.getElementById(setid);	var elm_hidden = document.getElementById(id);	if(elm_visible && elm_hidden)	{		document.getElementById(setid).style.display = "none";		document.getElementById(id).style.top = 110+(24*(n-1));		document.getElementById(id).style.display = "block";		setid = id;	}	return false;}
