var IE = document.all?true:false
if (!IE) {
	document.captureEvents(Event.MouseMove);
	document.captureEvents(Event.MouseOver);
	document.captureEvents(Event.MouseOut);
}

document.onmousemove = posicRatonXY;
var posicX = 0
var posicY = 0 

function posicRatonXY(e) {
	if (IE) { 
		posicX = event.clientX + document.body.scrollLeft;
		posicY = event.clientY + document.body.scrollTop
	} else { 
		posicX = e.pageX; 
		posicY = e.pageY
	};
	if (posicX < 0) {posicX = 0};
	if (posicY < 0) {posicY = 0};

	return true 
} 

// Mostrar y ocultar capas
function mostrar(nombreCapa){
	document.getElementById(nombreCapa).style.visibility="visible";
	if(IE){
		document.getElementById(nombreCapa).style.left=posicX;
		document.getElementById(nombreCapa).style.top=posicY;
	}else{
		document.getElementById(nombreCapa).style.left=posicX;
		document.getElementById(nombreCapa).style.top=posicY;		
	}
}

function ocultar(nombreCapa){
	document.getElementById(nombreCapa).style.visibility="hidden";
} 

/* Obre una finestra PopUp per les noticies */
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=340,height=360');");
}

/* Comprova els camps del formulari i selecciona l'adreça de destí */
function seleccionar(){
	/* Comprovem els camps del formulari */
	if(document.contacte.Nom.value==""){
		alert("ATENCIÓ! No has introduit cap valor en el camp Nom");
		return false;
	}
	if(document.contacte.Organitzacio.value==""){
		alert("ATENCIÓ! No has introduit cap valor en el camp Organització");
		return false;
	}
	if(document.contacte.email.value==""){
		alert("ATENCIÓ! No has introduit cap valor en el camp Correu Electrònic");
		return false;
	}	
	if(document.contacte.email.value.indexOf('@')==-1){
		alert("ATENCIÓ! No has introduit correctament la direcció de Correu Electrònic. P.e. tu@domini.com");
		return false;
	}
	if(document.contacte.email.value.indexOf('.')==-1){
		alert("ATENCIÓ! No has introduit correctament la direcció de Correu Electrònic. P.e. tu@domini.com");
		return false;
	}				
	if(document.contacte.Consulta.value==""){
		alert("ATENCIÓ! No has introduit cap valor en el camp Consulta");
		return false;
	}
					
	/* Seleccionem la direcció de mail on hem d'enviar el correu */
	if(document.contacte.departament.selectedIndex==0){
		document.contacte.recipient.value="pabasa@pabasa.com";
		//document.contacte.recipient.value="pabasa@pabasa.com";
	}
	else if(document.contacte.departament.selectedIndex==1){
		document.contacte.recipient.value="dept.personal@pabasa.com";
		//document.contacte.recipient.value="dept.personal@pabasa.com";
	}
	else if(document.contacte.departament.selectedIndex==2){
		document.contacte.recipient.value="dept.comercial@pabasa.com";
	}
	else if(document.contacte.departament.selectedIndex==3){
		document.contacte.recipient.value="dept.qualitat@pabasa.com";
	}				
	else if(document.contacte.departament.selectedIndex==4){
		document.contacte.recipient.value="proveidors@pabasa.com";
	}
	else if(document.contacte.departament.selectedIndex==5){
		document.contacte.recipient.value="clients@pabasa.com";
	}
	else if(document.contacte.departament.selectedIndex==6){
		document.contacte.recipient.value="informatica@pabasa.com";
	}
										
	return true;	
}
