<!--
function Go(url,path) {
 if(url == "") {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   return;
 }
 else {
   this.location.href = path+url;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
 }
}
//-->
