function cambiar(estediv) {
document.getElementById("div1").style.display = "none";
document.getElementById("div2").style.display = "none";
//document.getElementById("div3").style.display = "none";
//document.getElementById("div4").style.display = "none";
document.getElementById(estediv).style.display = "block";
}

//valida search 

<!--
function Search_Validator(theForm)
{

if (theForm.what.value == "")
{
alert("El campo de búsqueda esta vacío");
//theForm.form_input_search_keyword.focus();
return (false);
}

if (theForm.what.value.length < 3)
{
alert("Por favor ingresá al menos 3 caracteres para hacer una búsqueda");
//theForm.form_input_search_keyword.focus();
return (false);
}

var checkOK = 'áéíóúüABCDEFGHIJKLMNÑOPQRSTUVWXYZabcdefghijklmnñopqrstuvwxyz0123456789. "+';
var checkStr = theForm.what.value;
var allValid = true;
for (i = 0;  i < checkStr.length;  i++)
{
ch = checkStr.charAt(i);
for (j = 0;  j < checkOK.length;  j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
}
if (!allValid)
{
alert("Ingresá caracteres alfanuméricos para efectuar la búsqueda. Te sugerimos buscar el título del sitio");
//theForm.form_input_search_keyword.focus();
return (false);
}

return (true);
}
