<!--
	  		function GoProd(s)
					{	
					var d = s.options[s.selectedIndex].value;
                                        if (d==""){
                                           return (true);
                                          }
					window.top.document.location.href=d;
				}
function dscdiv() { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
		if (document.getElementById('divdschidden').style.display == "none") {
				parent.document.getElementById('divdschidden').style.display = 'inline'; 
				parent.document.getElementById('divdscshow').style.display = "none"; 
			} 
		else {
				parent.document.getElementById('divdschidden').style.display = "none"; 
				parent.document.getElementById('divdscshow').style.display = 'inline'; 
		}
	} 
} 


///////////////////////////////////////////////////////////////////////////////
function hidediv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('hideshow').style.visibility = 'hidden'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'hidden'; 
} 
} 
} 

function showdiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('hideshow').style.visibility = 'visible'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'visible'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'visible'; 
} 
} 
} 
//-->
