// JavaScript Document

//Función que establece el alto del documento
function goSetHeight() {
	//alert("Entre a goSetHeight");
  if (parent == window) return;
  else parent.setIframeHeight('cont');
}

//Función para imprimir el contenido del iframe
function frmPrint(idFrm)
{
	parent[idFrm].focus();
	parent[idFrm].print();
}

//Función para cargar el video a distintas resoluciones en función del navegador usado
function cVideo(calidad, video)
{
	//Determinar el browser utilizado
	var isIE = document.all?true:false;
	//Determinar parámetros en función del navegador
	//Si el núcleo es Internet Explorer
	if (isIE)
	{
		if ( calidad == 'alta')
			document.getElementById("video").innerHTML="<embed src='http://ebcedu.brinkster.net/video/" + video + "a.wmv' height='280' width='320' autostart='true' showstatusbar=1></embed>";	
		if (calidad == 'baja')
			document.getElementById("video").innerHTML="<embed src='http://ebcedu.brinkster.net/video/" + video + "b.wmv' height='180' width='160' autostart='true' showstatusbar=1></embed>";	

	}
	//Si el núcleo es Netscape
	else
	{
		if ( calidad == 'alta')
			document.getElementById("video").innerHTML="<embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' src='http://ebcedu.brinkster.net/video/" + video + "a.wmv name=MediaPlayer showcontrols=1 showstatusbar=1 width=320 height=280 autostart=1></embed>";	
		if (calidad == 'baja')
			document.getElementById("video").innerHTML="<embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' src='http://ebcedu.brinkster.net/video/" + video + "b.wmv name=MediaPlayer showcontrols=1 showstatusbar=1 width=160 height=180 autostart=1></embed>";	

	}
}

//Abre una nueva ventana con el formulario de Recomienda a un amigo
function recAmigo(url,local)
{
	var wURL;
	var wRec;
	if(local == undefined)
	{
		wURL = '../../asp/enviaAmigo.asp?rec=' + url;
		wRec = window.open(wURL,'','width=450,height=400');
	}
	else
	{
		wURL = 'http://ebcedu.brinkster.net/asp/enviaAmigo.asp?rec=' + url;
		wRec = window.open(wURL,'','width=450,height=400');
	}
}

//Abre una ventana con el formulario de Contacto de Ventana
function conVentana()
{
	var wURL;
	var wWin;
	wURL = '../../asp/contactoVentana.asp';
	wWin = window.open(wURL,'','width=550,height=450');
}