// JavaScript Document

<!--//
function formHandler(form){
    var URL = document.form.submenu.options[document.form.submenu.selectedIndex].value;
    if (URL != "") {
        window.location.href = URL;
    }
}
//-->

function hide(element)
		{
			if (element.style.display=="none") 
			{
				element.style.display=""; 
			} 
			else 
			{
				element.style.display="none";
			}
		}


	function findlayer(n, d) 
	{ //v3.aml
    if (document.getElementById) {
        var o;
	o = document.getElementById(n);
	return o;
    } else {
	var p,i,x;  
	if(!d) d=document; 
	if((p=n.indexOf("?"))>0&&parent.frames.length) 
		{
		d=parent.frames[n.substring(p+1)].document;
		n=n.substring(0,p);
		}
	if(!(x=d[n])&&d.all) x=d.all[n];
	for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findlayer(n,d.layers[i].document);
	return x;
    }
}

