// JavaScript Document
var accesible_menu,accesible_mapa;

accesible_menu ='<a href="index.htm">HOME</a><BR><a href="catalogo.htm">CATALOGO</a><BR><a href="contacto.htm">CONTACTO</a><BR>';
accesible_menu +='<a href="localizacion.htm">LOCALIZACION</a><BR><a href="enlace.htm">ENLACES DE INTERES</a><BR>';


accesible_mapa +='<img src="images/MAPA.jpg" ALT="Almac&eacute;n en la calle Alameda Urquijo y la tienda en la calle Luchana">';

function poner_flash(peli,ancho,alto,accesible)
	{
		document.write('<object type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'" data="'+peli+'">\n');
		document.write('<param name="movie" value="'+peli+'" />\n');
		document.write('<param name="quality" value="high" />\n');
		document.write('<param name="wmode" value="transparent" />\n');
		document.write(accesible+'\n');
		document.write('</object>\n');
		return false;
	}
