function leerCookie(nombre) {
   a = document.cookie.substring(document.cookie.indexOf(nombre + '=') + nombre.length + 1,document.cookie.length);
   if(a.indexOf(';') != -1)a = a.substring(0,a.indexOf(';'))
   return a; 
}
function ambiente()
{
	valor = leerCookie("ambiente");
	if(valor=="off")
		document.body.style.backgroundImage="";
	else{
		document.body.style.backgroundImage="url(panel/fotos/ambiente/ambiente.jpg)";
		document.body.style.backgroundRepeat="no-repeat";
		document.body.style.backgroundPosition="top center";
		}
	return;		
}
function ambienteCookie(){
	valor = leerCookie("ambiente");
	if(valor=="off")
		document.cookie="ambiente=on";
	else 
		document.cookie="ambiente=off";
	ambiente();
	return;
}


