function embedFlash(ubicacion,pelicula,ancho,alto){ 
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ancho+'" height="'+alto+'" title=""><param name="menu" value="false" /><param name="movie" value="'+ubicacion+pelicula+'.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" />'); document.write(''); document.write(''); document.write(''); document.write('<embed src="'+ubicacion+pelicula+'.swf" width="'+ancho+'" height="'+alto+'" quality="high" type="application/x-shockwave-flash" wmode="transparent">'); 
document.write('</object>'); 
}

function popup(theURL,myWidth,myHeight,Scroll) {
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
window.open(theURL,"popup",',left='+myLeft+',top='+myTop+',width='+myWidth+',height='+myHeight+'scrollbars='+Scroll);
}