function aleatorio(){
	numPosibilidades = 3;
	aleat = Math.random() * numPosibilidades;
	aleat = Math.round(aleat);
	return (parseInt(1) + aleat);
}

function embedFlash(pelicula,ancho,alto){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.');
	document.write('cab#version=7,0,19,0" width="' + ancho + '" height="' + alto + '"><param name="movie" ');
	document.write('value="' + pelicula + '.swf"><param name="quality" value="high"><embed ');
	document.write('src="' + pelicula + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write('type="application/x-shockwave-flash" width="' + ancho + '" height="' + alto + '"></embed></object>');
}

function embedFlash2(){
	var temp = aleatorio();
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ');
    document.write('width="485" height="221" VIEWASTEXT>');
    document.write('<param name="movie" value="exterior_0' + temp + '.swf">');
    document.write('<param name="quality" value="high">');
    document.write('<embed src="exterior_0' + temp + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ');
    document.write('type="application/x-shockwave-flash" width="485" height="221"></embed></object>');
}
