/*Imagenes de fondo en Explorer 6 SP1*/
try {
document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}



window.onload=function(){

	v="Wasabi, Sushi...";
	
	var caja="";

	if(document.getElementById){
		
		caja=document.getElementById("buscador");	
	
	}
	
		if(caja.value==""){
			caja.style.color='#666666';
			caja.value=v;
		}
	
	caja.onfocus=function(){
		if(caja.value==v){
			caja.value="";
			caja.style.color='#000000';
		}
	
	}

	caja.onblur=function(){
	
		if(caja.value==""){
			caja.style.color='#666666';
			caja.value=v;
	
		}
	
	}
	
}


function enviaForm(i){
document.getElementById(i).submit();	
}


function cvv(){

ventana=window.open("","cvv","width=366,height=276,resizable=0,scrollbars=0");
ventana.document.write("<html><head><title>Ayuda CVV</title></head><body style=\"margin:0;padding:0\"><img src=\"../images/CCV.gif\"></body></html>");
}

