function inicio(country) 
{

	var cur=Math.round(3*Math.random())
	
	document.body.style.backgroundImage = "url(backgrounds/"+country+"/back"+cur+".jpg)";
	document.body.style.backgroundRepeat = "no-repeat";
	document.body.style.backgroundPosition = "top center";
	
	//('<body background="backgrounds/'+country+'/back'+cur+'.jpg" bgcolor="#020303" style="background-repeat:no-repeat; background-position:center top;  ">')	
}

function hola(){
    document.getElementById("base").logout();
}




