// JavaScript Document
function abreFoto(ruta,ancho,alto){
	imagen=new Image();
	imagen.src=ruta;
	//ancho=imagen.width;
	//alto=imagen.height;
	html = '<html><head><title>espacio casa</title></head>';
	html += '<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>';
	html += '<center><img src="'+ruta+'" border=0 name="Foto" ';
	//html += 'onLoad="window.resizeTo(document.Foto.width+12,document.Foto.height+38)">';
	if (ancho==0 | alto==0) {
		html += 'onLoad="window.resizeTo(document.Foto.width+12,document.Foto.height+30)">';
	}
	html += '</center></body></html>';
	parametros="width="+ancho+",height="+alto;
	popupImage = window.open('','_blank',parametros);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.focus();
	popupImage.document.close();
}

//PARÁMETROS PARA ABRIR POPUP CON SUPERBOX
$(function(){
	$.superbox();
});

$.superbox.settings = {
	boxId: "superbox", // Id attribute of the "superbox" element
	boxClasses: "", // Class of the "superbox" element
	overlayOpacity: .8, // Background opaqueness
	boxWidth: "640", // Default width of the box
	boxHeight: "400", // Default height of the box
	loadTxt: "Cargando...", // Loading text
	closeTxt: "Cerrar", // "Close" button text
	prevTxt: "Anterior", // "Previous" button text
	nextTxt: "Siguiente" // "Next" button text
};

//CONTROLA CAMPOS DE FORMULARIOS VACÍOS Y HACE EL ENVÍO
function campoVacio(formulario){
	campos=document.forms[formulario].elements;
	mensaje="";
	for (i=0;i<campos.length;i++){
		if(campos[i].value=="" & campos[i].id!="fichero"){
			mensaje=mensaje+campos[i].name+", ";
		}
	}
	if(mensaje !=""){
		alert ("FALTAN LOS CAMPOS: " + mensaje);
	}else{
		document.forms[formulario].submit();	
	}
}


