// JavaScript Document

// OBRIR FINESTRA SECUNDARIA (POPUP)
var miPopup
function abreVentana(URL){
    miPopup = window.open(URL,"miwin","width=1000,height=800,scrollbars=yes, resize=yes")
    miPopup.focus()
}

function ponArchivoImg(campo, valor, ImgCampo, rutaImagen){
    opener.document.getElementById(campo).value = valor;
    opener.document.getElementById(ImgCampo).src = rutaImagen;
    window.close();
} 

function cerrarVentana(){
	window.close()	
}

// ESBORRAR CONTINGUT
function borrarCampo(nomCamp){
	document.getElementById(nomCamp).value=""
//	if (nomCamp=='IdFoto'){	   document.images['ImgIdFoto'].src = "img/nofoto.jpg";	}
}