// Funzioni Javascript Faro Sas

// Apre una nuova finestra 
	function ApriFinestra( urlpagina, w, h )
	{
		var width = w + 30;
		var height = h + 30;
		window.open( urlpagina, 'Finestra', 'left=50,top=50,width=' + width + ',height=' + height + ', menubar=no, scrollbars=yes, toolbar=no, screenX=0, screenY=0, status=0');
	}

// Controllo campi obbligatori del form Preventivo e restituisce testo
	function ControlloFormPreventivo()
	{
		var msg='';
		var my_rs = eval('document.preventivo[\'f_prev[Ragione_sociale]\']');
		var my_t = eval('document.preventivo[\'f_prev[Telefono]\']');
		if(my_rs.value == ''){ msg = msg + 'La ragione sociale è un campo obbligatorio!\n'; }
		if(my_t.value == ''){ msg = msg + 'Il campo Telefono o Email è obbligatorio!\n'; }
		if(msg != "")
		{
			alert(msg);
			return false;
		} else {
			return true;
		}
	}