// JavaScript Document
function CargarFoto(img, ancho, alto){
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;

string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  fin=window.open(img,"",string);
}

function Player(pPelicula,pImagen,pAncho,pAlto,pBuffer) {
	document.write('<embed src="flash/player.swf" width="'+pAncho+'" height="'+pAlto+'" allowfullscreen="true" allowscriptaccess="always" flashvars="&controlbar=over&autostart=false&displayheight='+pAlto+'&bufferlength='+pBuffer+'&file='+pPelicula+'&height='+pAlto+'&image='+pImagen+'&width='+pAncho+'" />')
}

