function VerVideo(IdVideo,valorAncho,valorAlto)
{
	URL = "http://www.interactivo.maristas.cl/video/VideoPlayer.php?idVideo="+IdVideo+"&idUrlOrigen="+location.href+"&ConNoticia=1";
	 
    Ancho = valorAncho;
    Alto = valorAlto;

	var winl = (screen.width - Ancho) / 2;
	var wint = (screen.height - Alto) / 2;
	winprops = 'height='+Alto+',width='+Ancho+',top='+wint+',left='+winl+',scrollbars=0';
	win = window.open(URL,"Video",winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}


function VerVideoNoticia(IdVideo,valorAncho,valorAlto,UrlNoticia)
{
	URL = "http://www.interactivo.maristas.cl/video/VideoPlayer.php?idVideo="+IdVideo+"&idUrlOrigen="+UrlNoticia+"&ConNoticia=1";
	 
    Ancho = valorAncho;
    Alto = valorAlto;

	var winl = (screen.width - Ancho) / 2;
	var wint = (screen.height - Alto) / 2;
	winprops = 'height='+Alto+',width='+Ancho+',top='+wint+',left='+winl+',scrollbars=0';
	win = window.open(URL,"Video",winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}


function VerVideoSinNoticia(IdVideo,valorAncho,valorAlto,Titulo)
{
	URL = "http://www.interactivo.maristas.cl/video/VideoPlayer.php?idVideo="+IdVideo+"&idUrlOrigen="+location.href+"&Titulo="+Titulo+"&ConNoticia=0";
	 
    Ancho = valorAncho;
    Alto = valorAlto;

	var winl = (screen.width - Ancho) / 2;
	var wint = (screen.height - Alto) / 2;
	winprops = 'height='+Alto+',width='+Ancho+',top='+wint+',left='+winl+',scrollbars=0';
	win = window.open(URL,"Video",winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}
