﻿var on=0;

function popunder(data){	
	var iebody=(document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body

	//var dsocleft=document.all? iebody.scrollLeft : pageXOffset
	var dsoctop=document.all? iebody.scrollTop : pageYOffset

	$('bkp').style.visibility="visible";
	$('fotoDiv').style.visibility="visible";
	$('fotoDiv').style.top=dsoctop+50+"px";
	$('i').src=data;	
}

function closeP(){
	$('bkp').style.visibility="hidden";
	$('fotoDiv').style.visibility="hidden";
	$('i').src='public/fotografie/loading.gif';
}


function sendForm(){	
	
	var nome=$('nome');
	var txt=$('messaggio');
	var tst=$('messaggio').value;
	var fdb=$('fdb');
	var cnt=$('comments');
	var inc=$('inCommento');

	
	var e=0;
	
	nome.style.backgroundColor='#FFF';
	txt.style.backgroundColor='#FFF';
	
	if(trim(nome.value)==''){
		nome.style.backgroundColor='#FFC6C6';
		e++;
	}else if(trim(tst)==''){
		txt.style.backgroundColor='#FFC6C6';
		e++;
	}
	
	if(e==1){
		fdb.innerHTML='Completare il campo evidenziato';
	}else if(e>1){
		fdb.innerHTML='Completare i campi evidenziati';
	}else{
		
		cnt.innerHTML='<p><strong>Invio del messaggio in corso. Attendere prego.</strong></p><img src="../Immagini/Struttura/commonIco/wait.gif" alt="Attendere prego" />';
		var r=a();
		
		r.onreadystatechange = function() {			
			if(r.readyState==4){
				if(r.status==200){
					cnt.innerHTML=r.responseText;
					txt.value="";
					nome.value="";
				}else{
					cnt.innerHTML="<p class=\"r\">Errore durante l'invio del messaggio!</p>";
				}
			}			
		};
		r.open("POST",'../res/php/do/commenta.php',true);
		r.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		r.send("n="+nome.value+"&m="+tst+"&s=sciclub&c=elisa");
	}
}


function sendFormH(){	
	
	var nome=$('nome');
	var txt=$('messaggio');
	var tst=$('messaggio').value;
	var fdb=$('fdb');
	var cnt=$('comments');
	var inc=$('inCommento');

	
	var e=0;
	
	nome.style.backgroundColor='#FFF';
	txt.style.backgroundColor='#FFF';
	
	if(trim(nome.value)==''){
		nome.style.backgroundColor='#FFC6C6';
		e++;
	}else if(trim(tst)==''){
		txt.style.backgroundColor='#FFC6C6';
		e++;
	}
	
	if(e==1){
		fdb.innerHTML='Completare il campo evidenziato';
	}else if(e>1){
		fdb.innerHTML='Completare i campi evidenziati';
	}else{
		
		cnt.innerHTML='<p><strong>Invio del messaggio in corso. Attendere prego.</strong></p><img src="../Immagini/Struttura/commonIco/wait.gif" alt="Attendere prego" />';
		var r=a();
		
		r.onreadystatechange = function() {			
			if(r.readyState==4){
				if(r.status==200){
					cnt.innerHTML=r.responseText;
					txt.value="";
					nome.value="";
				}else{
					cnt.innerHTML="<p class=\"r\">Errore durante l'invio del messaggio!</p>";
				}
			}			
		};
		r.open("POST",'../res/php/do/commenta.php',true);
		r.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		r.send("n="+nome.value+"&m="+tst+"&s=sciclub&c=commentiSc");
	}
}


è(window, 'load', function(){
	if($('chiudiP')!=null && $('imgD')!=null){
		è($('chiudiP'), 'click', function(){closeP();});
		è($('imgD'), 'click', function(){closeP();});
	}
	
	hilight('sciclubM');
	
	if($('invia')!=null){
		è($("invia"), 'click', function(){
			sendForm();
		});
	}
	
	if($('inviah')!=null){
		è($("inviah"), 'click', function(){
			sendFormH();
		});
	}	
});