function SelectGo(targ,selObj,restore)
{ 
 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); 
 if(restore) { selObj.selectedIndex=0; }
} 

function stripslashes(str)
{
 str=str.replace(/\\'/g,'\'');
 str=str.replace(/\\"/g,'"');
 str=str.replace(/\\0/g,'\0');
 str=str.replace(/\\\\/g,'\\');
 return str;
}
