function Go(x, y) 
{ 
if(x == "nothing")
 { 
document.forms[y].reset();
document.forms[y].elements[0].blur(); 
return;
 } 
else if(x == "end") top.location.href = parent.frames[1].location; 
else 
{ 
parent.frames[1].location.href = x;
 document.forms[y].reset();
 document.forms[y].elements[0].blur();
 }
 } 

