function controlla(s){
var a = false; 
var res = false; 
if(typeof(RegExp) == 'function') 
{ 
var b = new RegExp('abc'); 
if(b.test('abc') == true){a = true;} 
} 
 
if(a == true) 
{ 
reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)'+ 
'(\\@)([a-zA-Z0-9\\-\\.]{2,255})'+ 
'(\\.)([a-zA-Z]{2,4})$'); 
res = (reg.test(s)); 
} 
else 
{ 
res = (s.search('@') >= 1 && 
s.lastIndexOf('.') > s.search('@') && 
s.lastIndexOf('.') >= s.length-5);
} 

if(res==false||s=='your@domain.com'){alert("Inserisci un indirizzo e-mail valido.");
	return false;}

else{
	
	if(confirm("INFORMATIVA SULLA PRIVACY \n\nAi sensi del D. Lgs n. 196/2003 autorizzo la societa' Andreoni Immobiliare con studio in Venturina, Via Cerrini 38, P.Iva 01603580497, a trattare tutti i miei dati essendo altresi' consapevole che in qualsiasi momento potro' chiedere la modifica e cancellazione degli stessi."))return true;
	else return false;
	}
	
}
	
	
function openWin( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
	} 
