

function nuevoAjax() {
         try {
                 objetus = new ActiveXObject("Msxml2.XMLHTTP");
        } catch ( e) {
                 try {
                         objetus= new ActiveXObject ("Microsoft.XMLHTTP");
                 } catch (E) {
                          objetus= false;
                }
        }
        if (! objetus && typeof XMLHttpRequest!= 'undefined') {
                 objetus = new XMLHttpRequest();
        }
        return objetus
}

function cargaNoticia(ID){
		var contenido,ID;
		document.getElementById("noticia").style.visibility="visible";
		contenido = document.getElementById("noticia");
		ajax=nuevoAjax(); 
	
		ajax.open("GET", "noticia.php?ID=" + ID ,true);
	
	 ajax.onreadystatechange=function(){

		if (ajax.readyState==4) {
					//document.getElementById(capa).style.visibility='visible';
				 contenido.innerHTML = ajax.responseText;
					}
				}
				ajax.send(null)
			}
	

			
function tanca(){
document.getElementById("window").style.visibility = "hidden";

}

function tancaTemps(){
document.getElementById("temps").style.visibility="hidden";
}
function obreTemps(){
document.getElementById("temps").style.visibility="visible";
}


function contactar(){
	
	var camp1 = document.envio.nom.value;
	var camp2 = document.envio.mail.value;
	var camp3 = document.envio.txt.value;
	
	if(camp1==''){
		alert("Ha d'omplenar el seu nom");
		}else{
			if(camp2==''){
				alert("Ha d'omplenar el seu correu electrònic");
			}
				else{
					
					if(camp3==''){
					alert("Ha de posar algun comentari");
					}
					else{
						document.envio.submit();
						}
				}
			}
		

	}
	
		function firma(){
		alert("Web Creada per Pol Llaudó - Feb. 2010 - krakijo@hotmail.com");
		}