function crearMenu(opcio){

	var strC = '';
	
	strC+='<table cellpadding="0" cellspacing="0" border="0">';
	strC+='<tr>';
	
	if (opcio == 'presentacio') strC+='<td valign="top"><img src="img/boto_presentacio_on.jpg" border="0"></td>';
	else strC+='<td valign="top"><a href="presentacio.htm"><img src="img/boto_presentacio_off.jpg" border="0"></a></td>';
	
	if (opcio == 'serveis') strC+='<td valign="top"><img src="img/boto_serveis_on.jpg" border="0"></td>';
	else strC+='<td  valign="top"><a href="serveis.htm"><img src="img/boto_serveis_off.jpg" border="0"></a></td>';
	
	if (opcio == 'equipaments') strC+='<td valign="top"><img src="img/boto_equipaments_on.jpg" border="0"></td>';
	else strC+='<td  valign="top"><a href="equipaments.htm"><img src="img/boto_equipaments_off.jpg" border="0"></a></td>';
	
	if (opcio == 'albumdefotos') strC+='<td valign="top"><img src="img/boto_albumdefotos_on.jpg" border="0"></td>';
	else strC+='<td  valign="top"><a href="albumdefotos.htm""><img src="img/boto_albumdefotos_off.jpg" border="0"></a></td>';

	if (opcio == 'contacte') strC+='<td valign="top"><img src="img/boto_contacte_on.jpg" border="0"></td>';
	else strC+='<td  valign="top"><a href="contacte.htm"><img src="img/boto_contacte_off.jpg" border="0"></a></td>';
	
	if (opcio == 'onsom') strC+='<td valign="top"><img src="img/boto_onsom_on.jpg" border="0"></td>';
	else strC+='<td  valign="top"><a href="onsom.htm"><img src="img/boto_onsom_off.jpg" border="0"></a></td>';

	strC+='</tr>';
	strC+='</table>';
	
	document.write(strC);
}

function zoomIn(){

	if (posicio == 1){
		document.getElementById("reduir").style.color = "#EEE9E9";
		document.getElementById("reduir").style.cursor = "pointer";
		document.images[0].src = "../img/map_002.gif";
		posicio = 2;
	}
	else if (posicio == 2){
		document.getElementById("ampliar").style.color = "#9EBCB3";
		document.getElementById("ampliar").style.cursor = "default";
		document.images[0].src = "../img/map_003.gif";
		posicio = 3;
	}
	
}

function zoomOut(){

	if (posicio == 2){
		document.getElementById("reduir").style.color = "#9EBCB3";
		document.getElementById("reduir").style.cursor = "default";
		document.images[0].src = "../img/map_001.gif";
		posicio = 1;
	}
	else if (posicio == 3){
		document.getElementById("ampliar").style.color = "#EEE9E9";
		document.getElementById("ampliar").style.cursor = "pointer";
		document.images[0].src = "../img/map_002.gif";
		posicio = 2;
	}
}

function obrirFinestra(opcio){

	if (opcio == 'credits'){
	
		fin = open("","finestra_credits","directories=0,location=0,toolbar=0,titlebar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=365,height=160");
	
		strC = '';
		strC+='<head><title>J F w e b _ i n f o s e r v i a r t</title></head>';
		strC+='<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">';
		strC+='<img src="../img/jfweb_infoserviart.gif" border="0">';
		strC+='</body>';
	}
	else if (opcio == 'avis_legal'){
		
		fin = open("","finestra_avis_legal","directories=0,location=0,toolbar=0,titlebar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=441,height=231");
	
		strC = '';
		strC+='<head><title>Nota Legal</title></head>';
		strC+='<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">';
		strC+='<img src="img/nota_legal.gif" border="0">';
		strC+='</body>';
	}
	else{
		fin = open("","foto","directories=0,location=0,toolbar=0,titlebar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=640,height=480");
	
		strC = '';
		strC+='<head><title>R E S I D E N C I A _ G U I L L E M _ M A S</title></head>';
		strC+='<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">';
		strC+='<img src="../fotos/large/foto_' + opcio + '.jpg" border="0">';
		strC+='</body>';
	}
	
	with(fin.document){
		open()
		write(strC);
		close()
	}
}