
window.onload=function()
{
 var df=document.getElementById("hostselect");

 if (df.selectedIndex!=0)
  df.selectedIndex=0;

 df.onchange=function()
 {
  changeHost(this);
 }
}

function changeHost(list)
{
 if (list.selectedIndex==0)
  window.location="http://epma.autotrain.org";
 if (list.selectedIndex==1)
  window.location="http://centrov.cimne.upc.es/epma/defaultEPMA_es.htm";
}

