var ventana_regalo=null;

function regalos (){
			if(ventana_regalo !=null){
				ventana_regalo.close();
				ventana_regalo=null;
			}//la cierro si está abierta
			ventana_regalo=window.open("","regalos","width=350,height=500,left=0,top=0,resizable=0,toolbar=0,scrollbars=0,location=0,menubar=0");
			ventana_regalo.document.location.href="cuadro_regalo.php";	
}

function cerrar(capa){	
	var obj = document.getElementById(capa);
	
	if(obj.style.visibility== "hidden")
		obj.style.visibility= "visible";
	else obj.style.visibility= "hidden";
}