
if (self.parent.frames.length != 0)
{
		self.parent.location=document.location;
}
window.moveTo(0,0);
if (document.all) 
{
  top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}

function fecha()
{

 var fech=new Date();
 var agno=fech.getYear();
 var texto=" 2004 - "+agno;
 return texto;

}

//funcion para escribir los menus dchos dinamicamente
function menu(clase,artista)
{
	//array que contendrá las url´s
	var datos=new Array();
	
	ruta="../imagenes/";
	
	//castellano
	if(clase==0)
	{
		ruta="imagenes/";
		datos [0]=["Presentación","index.html"];
		datos [1]=["Catálogo","catalogo.html"];
		datos [2]=["Distribución","distribucion.html"];
		datos [3]=["Contacto","contacto.html"];
		
	}
	

	//inglés
	if(clase==1)
	{	
		datos [0]=["About us","index.html"];
		datos [1]=["Catalogue","catalogue.html"];
		datos [2]=["Distribution","distribution.html"];
		datos [3]=["Contact us","contact.html"];
		
	}

	//francés
	if(clase==2)
	{
		datos [0]=["Présentation","index.html"];
		datos [1]=["Catalogue","catalogue.html"];
		datos [2]=["Distribution","distribution.html"];
		datos [3]=["Contact","contact.html"];
		
	}
	
	//japonés
	if(clase==3)
	{
		datos [0]=["&#32057;&#20171;","index.html"];
		datos [1]=["&#12459;&#12479;&#12525;&#12464;","catalogue.html"];
		datos [2]=["&#36009;&#22770;&#20195;&#29702;&#24215;","distribution.html"];
		datos [3]=["&#12362;&#21839;&#21512;&#12379;&#20808;","contact.html"];
	}
	
		
		document.write("<table width='100%' border='0' cellpadding='0' cellspacing='0'>")

		for(i=0;i<datos.length;i++)
		{
			var tipo=datos[i][0];
	
			if(tipo==artista)
			{
		
				document.write("<tr><td><div align='left'><img src='"+ruta+"flech2.gif' align='bottom'>&nbsp;<span class='menufijo'>"+datos[i][0]+"</span></div></td></tr>")
			}
			else
			{
				document.write("<tr><td><div align='left'><img src='"+ruta+"flech.gif' align='bottom'>&nbsp;<a href="+datos[i][1]+" class='artis'>"+datos[i][0]+"</a></div></td></tr>")
			}
	
		}
  		document.write("</table>");
	
	
}


function catalogo(lengua,opcion)
{
	//array que contendrá las url´s
	var datos=new Array();
	var fijo=new Array();
	var trozo1="<table width='100%' border='0' cellpadding='0' cellspacing='0'>";

	datos [0]=["LAU001","lau001.html"];
	datos [1]=["LAU002","lau002.html"];
	datos [2]=["LAU003","lau003.html"];
	if (lengua!=3)
	{
	datos [3]=["LAU004","lau004.html"];
	datos [4]=["LAU005","lau005.html"];
	datos [5]=["LAU006","lau006.html"];
	datos [6]=["LAU007","lau007.html"];
	datos [7]=["LAU008","lau008.html"];
	datos [8]=["LAU009","lau009.html"];
	
	}
	
	
	ruta="../imagenes/";
	
	//castellano
	if(lengua==0)
	{
		ruta="imagenes/";
		fijo [0]=["Presentación","index.html"];
		fijo [1]=["Catálogo","catalogo.html"];
		fijo [2]=["Distribución","distribucion.html"];
		fijo [3]=["Contacto","contacto.html"];
	}
	

	//inglés
	if(lengua==1)
	{	
		fijo [0]=["About us","index.html"];
		fijo [1]=["Catalogue","catalogue.html"];
		fijo [2]=["Distribution","distribution.html"];
		fijo [3]=["Contact us","contact.html"];
		
	}

	//francés
	if(lengua==2)
	{
		fijo [0]=["Présentation","index.html"];
		fijo [1]=["Catalogue","catalogue.html"];
		fijo [2]=["Distribution","distribution.html"];
		fijo [3]=["Contact","contact.html"];
		
	}
	
	
	//japonés
	if(lengua==3)
	{
		fijo [0]=["&#32057;&#20171;","index.html"];
		fijo [1]=["&#12459;&#12479;&#12525;&#12464;","catalogue.html"];
		fijo [2]=["&#36009;&#22770;&#20195;&#29702;&#24215;","distribution.html"];
		fijo [3]=["&#12362;&#21839;&#21512;&#12379;&#20808;","contact.html"];
		
	}
	

	
	for(i=0;i<fijo.length;i++)
	{
		trozo1=trozo1+"<tr><td colspan='2'><img src='"+ruta+"flech.gif' align='bottom'> <a href='"+fijo[i][1]+"' class='artis'>"+fijo[i][0]+"</a></td></tr>";
		
		if(i==1)
		{  
			trozo1=trozo1+"<tr><td width='5%'></td><td>";
			for(z=0;z<datos.length;z++)
			{
				if(z==opcion)
				{
					trozo1=trozo1+"<img src='"+ruta+"flech2.gif' align='bottom' border='0'> <span class='menufijo'>"+datos[z][0]+"</span><br>";
				}
				else
				{
					trozo1=trozo1+"<img src='"+ruta+"flech.gif' align='bottom' border='0'> <a href='"+datos[z][1]+"' class='artis'>"+datos[z][0]+"</a><br>";
				}
			}
		}
	}
	
		trozo1=trozo1+"</td></tr>";
		
		document.write(trozo1+"</tr></table>");
           
 }