/********* FUNCIÓ DE POPUP  ***************/

function open_fotohi(titulo,foto,altura,anchura)
		{
			var anchura_ventana
			if(anchura>=500) {anchura=500;anchura_ventana=550}
			if(anchura<500) {anchura_ventana=anchura+50;}
			msgwindow=open("pop_fotohigh.htm?titulo=" + titulo + "&foto=" + foto + "&anchura=" + anchura,"FotoamP","width=" + anchura_ventana + ",height=" + altura + ",scrollbars=yes,resizable=yes");
		}
		
//DESCRIPTION:  Obre una finestra, tipo Pop-up General
function obrePopupGeneral(sURL, iWidth, iHeight){
	//comprovació navegador
	var sNav = navigator.userAgent;
	var nInd_gk = sNav.indexOf("Gecko");
	if (nInd_gk != -1){
		iWidth += 4;
		iHeight += 4;
	}
	var anPos_final = new Array();
    var iWidthAux = (screen.availWidth - iWidth) / 2;
    var iHeightAux = (screen.availHeight - iHeight) / 2;
	var sParam = 'toolbar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no,menubar=no,width='+iWidth+',height='+iHeight+',left='+iWidthAux+',top='+iHeightAux;
    var wPopup = window.open(sURL,"finestra",sParam);
}