
function redirect(){

host=new String(window.location);
//alert(" ||" + host + "|| " + host.indexOf("luthiervega.com.ar"));
switch (true)
{
case (host.indexOf("biblia01.com.ar")>-1):
  window.location= "http://www.biblia01.com.ar/biblia/index.php"; 
  break;
case (host.indexOf("edu-mhla")>-1):
  window.location= "http://www.edu-mhla.com/"; 
  break;
case  (host.indexOf("luthiervega.com.ar")>-1 || host.indexOf("vegaluthier.com.ar")>-1 || host.indexOf("fernandovega.com.ar")>-1):
window.location= "http://www.vegaluthier.com.ar/vegaluthier/index.htm";
  break;
case  (host.indexOf("calle01.com.ar")>-1):
  window.location= "http://www.calle01.com.ar/calle/index.htm";
  break;
default:
  window.location= "http://www.mhla.com.ar/mhla.html";
  break;
}
  
}
  