function RunFlash(ruta,ancho,alto)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ancho+'" height="'+alto+'">');
    document.write('<param name="movie" value="'+ruta+'" />');
    document.write('<param name="quality" value="high" />');
    document.write('<embed src="'+ruta+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'"></embed>');
    document.write('</object>');
}
function gotoURL(url,opcion)
{
	urlBase='http://www.umag.cl/';
	if(opcion==1 && url!=0) //Para las carreras
	{
		url='admision/?carrera='+url;		
	}
	if(url!=0)
	{
		location.href=urlBase+url;
	}
}
function limpiaCasilla(casilla,defecto)
{
	//document.write(casilla);
	nombre=document.form_mail.elements[''+casilla].value;
	//nombre=document.getElementById(casilla).value;
	if(nombre == defecto)
	{
		//document.getElementById(nombre).value="";
		document.form_mail.elements[''+casilla].value="";
	}
}
function toggleMenu(objID) {
if (!document.getElementById) return;
var ob = document.getElementById(objID).style;
ob.display = (ob.display == 'block')?'none': 'block';
}
