// Irudia aleatorioki aldatzeko.
var fondo = new Array();

fondo[0] = 'images/aleatorioa/zaldiak.jpg';
fondo[1] = 'images/aleatorioa/zaldiak1.jpg';
fondo[2] = 'images/aleatorioa/zaldiak2.jpg';
fondo[3] = 'images/aleatorioa/zaldiak10.jpg';
fondo[4] = 'images/aleatorioa/zaldiak11.jpg';
fondo[5] = 'images/aleatorioa/zaldiak12.jpg';
fondo[6] = 'images/aleatorioa/zaldiak13.jpg';
fondo[7] = 'images/aleatorioa/zaldiak14.jpg';
fondo[8] = 'images/aleatorioa/zaldiak15.jpg';

var ele = Math.round(Math.random()*8);

document.write( '<style type="text/css">' );
document.write('#M_irudiak{');
document.write('background-image: url("'+fondo[ele]+'");');
document.write('}');
document.write('</style>');

//Argazki galeria egiteko.
function ver(img, title, x, y) { //v2.0
  
  vista = window.open("","IMAGEN","width="+x+",height="+y+",top=80,left=130");
  vista.close();
  vista = window.open("","IMAGEN","width="+x+",height="+y+",top=80,left=130");
  vista.document.writeln("<HTML>");
  vista.document.writeln("<HEAD><TITLE>"+title+"</TITLE></HEAD>");
  vista.document.writeln("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
  vista.document.writeln("<IMG src='"+img+"' width='"+x+"' height='"+y+"'>");
  vista.document.writeln("</BODY>");
  vista.document.writeln("</HTML>");
  vista.document.close();
}
//Hizkuntza kontrolatu
function hizkuntza_aldatu()
{
		var url,zenbatgarren,orria
		url=window.location.href
		zenbatgarren=url.length-url.lastIndexOf("/")
		orria=url.substring((url.lastIndexOf("/")+1),url.length)	
		
		if (document.hizkuntza.zein.value=="eu")
		{
		window.location.href="../"+orria;
		}
		else
		{
		window.location.href="../es/index_es.html";
		}
}
