function lowopacity(imagen){
	imagen.style.opacity=0.6; imagen.style.filter= 'alpha(opacity=60)';
}
function highopacity(imagen){
	imagen.style.opacity=1; imagen.style.filter= 'alpha(opacity=100)';
}
function newsletter() {
    objajax('bnews','inc/ajax.newsletter.php?nombre='+ encodeURIComponent(document.getElementById('newsnombre').value) +'&email='+ encodeURIComponent(document.getElementById('newsemail').value) +'&movil='+ encodeURIComponent(document.getElementById('newsmovil').value),document);
}
function contacto() {
	var nombre = encodeURIComponent(document.getElementById('nombre').value);
	var email = encodeURIComponent(document.getElementById('email').value);
	var comentario = encodeURIComponent(document.getElementById('comentario').value);
	objajax('divcontacto','inc/ajax.contacto.php?nombre='+ nombre +'&email='+ email +'&comentario='+ comentario,document);
}
