
/**** imatges menú **********/

var imagon = new Array();
var imagoff = new Array();


/* català */

imagon['botoseg'] = new Image(); imagon['botoseg'].src = 'botons/boto_seg_on.jpg';
imagoff['botoseg'] = new Image(); imagoff['botoseg'].src = 'botons/boto_seg_off.jpg';

imagon['botoant'] = new Image(); imagon['botoant'].src = 'botons/boto_ant_on.jpg';
imagoff['botoant'] = new Image(); imagoff['botoant'].src = 'botons/boto_ant_off.jpg';

imagon['mesgaleria'] = new Image(); imagon['mesgaleria'].src = '../imatges/mesgaleria_on.jpg';
imagoff['mesgaleria'] = new Image(); imagoff['mesgaleria'].src = '../imatges/mesgaleria_off.jpg';

imagon['mesopinions'] = new Image(); imagon['mesopinions'].src = '../imatges/mesopinions_on.gif';
imagoff['mesopinions'] = new Image(); imagoff['mesopinions'].src = '../imatges/mesopinions_off.gif';

imagon['mestemes'] = new Image(); imagon['mestemes'].src = '../imatges/mestemes_on.gif';
imagoff['mestemes'] = new Image(); imagoff['mestemes'].src = '../imatges/mestemes_off.gif';

function activar(imgobj) {
	imgobj.src=imagon[imgobj.id].src;
}	

function desactivar(imgobj) {

	imgobj.src= imagoff[imgobj.id].src;	

}

function obreReproductor()
{

Reus=window.open("http://www.cabina.cat/reproductor/reproductor.html","Zoom","scrollbars=no,menubar=no,toolbar=no,resizable=no,status=no,directories=no,location=no,width=346,height=454");


}


function PopUp(id,img,lg){
foto1= new Image();
foto1.src=(img);

Control(id,img,lg);
}
function Control(id,img,lg){
    if((foto1.width!=0)&&(foto1.height!=0)){
        verFoto(id,img,lg);
    }else{
        funcion="Control('"+img+"')";
        intervalo=setTimeout(funcion,20);
        }
    }
function verFoto(id,img,lg){
    ancho=foto1.width+20;
    alto=foto1.height+200;
    cadena="width="+ancho+",height="+alto+",menubar=no,toolbar=no,scrollbars=yes,statusbar=no";
    ventana=window.open("botiga.php?accio=finestra&id="+id+"&lg="+lg+"","",cadena);
} 



function validarComentari()
{

	if(document.formulari.autor.value=="")
	{
		alert("No has introduït el teu nom");
		document.formulari.autor.focus();
		return;
	}

	else if(document.formulari.mail.value=="")
	{
		alert("No has introduït el teu correu electrònic");
		document.formulari.mail.focus();
		return;
	}

	else if (document.formulari.mail.value.indexOf ("@") == -1 ||
    	document.formulari.mail.value.indexOf (".") == -1)
	{
		alert ("El correu-e especificat no és correcte,\n");
		document.formulari.mail.focus ();
		return;
	}

	else if(document.formulari.telefon.value=="")
	{
		alert("No has introduït el teu telèfon");
		document.formulari.telefon.focus();
		return;
	}

	else if(document.formulari.missatge.value=="")
	{
		alert("No has introduït cap missatge");
		document.formulari.missatge.focus();
		return;
	}

	else
	{
		document.formulari.submit();
	}
}

