function rndflash(ubicacion,ancho,alto) { 

var peli1="ban01"
var peli2="ban02"
var peli3="ban03"

var cur=Math.round(6*Math.random())

if (cur<=1) 
	pelicula=peli1
else if (cur<=4)
	pelicula=peli2
else
	pelicula=peli3


document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" 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" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent">'); 
document.write('</object>'); 
}



function flash(ubicacion,pelicula,ancho,alto){ 
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" 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" pluginspage="http://www.macromedia.com/go/getflashplayer" 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);
}



function Win(theURL,myWidth,myHeight,Scroll) {
myWidth = 375;
myHeight = 200;
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
ventana = window.open(theURL,"popup",',left='+myLeft+',top='+myTop+',width='+myWidth+',height='+myHeight+'scrollbars='+Scroll);
ventana.focus()
}
