<!-- hide
function jump(sss) {
if (sss != "null") {
	document.location.href = sss;
	}
}
var xmlHttp
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
function submitform(sss)
{
	if (sss!="") {
		document.getElementById(sss).submit();
	}
}
function clearme(sss) {
     if (sss.value == sss.defaultValue) {
         sss.value = ""
     }
 }
function toggle(sss) {
	if ( document.getElementById(sss).style.display != 'none' ) {
		document.getElementById(sss).style.display = 'none';
	}
	else {
		document.getElementById(sss).style.display = 'block';
	}
	document.body.style.overflow="auto"
	document.body.style.height="auto"
}
// end hide -->