/*<script LANGUAGE="JavaScript">

   function Mostrar(boton)
   {
 	var temp = formulario.edad.options[formulario.edad.selectedIndex].value;	
   	if(temp == 18)
     location.replace("http://intranet.uci.cu");
     	if(temp == 19)
     		location.replace("http://inter-nos.uci.cu");  
     		 	if(temp == 20)
     				location.replace("http://teleformacion.uci.cu");       
   }

</script>*/

function Mostrar(id)
   {
 	//var temp = formulario.edad.options[formulario.edad.selectedIndex].value;
 	var temp = document.getElementById(id);	
   	if(temp == 1)
     location.replace("http://intranet.uci.cu");
     	if(temp == 2)
     		location.replace("http://inter-nos.uci.cu");  
     		 	if(temp == 3)
     				location.replace("http://teleformacion.uci.cu");       
   }
