var naam=navigator.appName;
var now=new Date();
var num=(now.getSeconds())%4;
function selected(nummer)
{ if (num == nummer)
   return " selected";
  else return "";
}
var imge1 = new Image();
imge1.src = "";
document.write('<form name="metasearch" onsubmit="search()" action=""><table border="0" cellpadding="0" cellspacing="0"><tr><td><img src="http://www.globaltekperu.com/grafis/buscarproductos.jpg"></td></tr>');
if (naam=="Netscape") document.write('<tr><td valign="middle" align="center"><input name="query" type="text" size="8" maxlength="100">');
else document.write('<tr><td valign="middle" align="left">&nbsp;&nbsp;<input name="query" type="text" style="font-family: Verdana; font-size: 8 pt" size="16" maxlength="100">');
document.write('<\/td></tr><tr><td valign="middle" align="center">');
document.write('<select name="engine" style="background-color: #20AC38; color: #FFFFFF; font-family: Arial; font-size: 8 pt"><option value="">Seleccionar<\/option>');
document.write('<option value="semiconductores">Semiconductores<\/option>');
document.write('<option value="miscelaneos">Miscelaneos<\/option>');
document.write('<option value="instrumentos">Instrumentos<\/option>');
document.write('<input type="button" style="font-family: Arial; font-size: 8 pt; border: 1 solid #000000" value="ver" onclick="search()">');
document.write('<\/td><\/tr><\/table>');

function search()
{
zoekTerm = document.metasearch.query.value;    
if(zoekTerm != "")
{
zoekTerm = zoekTerm.replace(/\s/ig, "+");
nummer = document.metasearch.engine.selectedIndex;
zoekMachine = document.metasearch.engine[nummer].value;

eindTerm = "";
if(zoekMachine == "semiconductores") eindTerm = "http://www.globaltekperu.com/productos/semiconductores.php?search=" + zoekTerm;
else if(zoekMachine == "miscelaneos") eindTerm = "http://www.globaltekperu.com/productos/miscelaneos.php?search=" + zoekTerm;
else if(zoekMachine == "instrumentos") eindTerm = "http://www.globaltekperu.com/productos/instrumentos.php?search=" + zoekTerm;

if(zoekMachine != ""){
zoekraam=window.open(""+eindTerm,"zoekresultaat","width=screen.availWidth,height=screen.availHeight,scrollbars,toolbar,menubar=1,location=1,resizable=1,status=1,directories=0,top=0,left=0");
zoekraam.focus();
}
}
}

