function initPage()
{
}
function printEmail()
{
	document.write('davide'+String.fromCharCode(64)+'area'+String.fromCharCode(45)+'libera'+String.fromCharCode(46)+'it');
}
function LogOnSubmit()
{
	var sUser = document.formLogin.user.value;
	var sPwd = document.formLogin.pwd.value;

	if( !sUser || !sPwd )
	{
		alert('ATTENZIONE! Utente e password sono obbligatori per accedere ai servizi di amministrazione');
		document.formLogin.user.focus();
		document.formLogin.user.select();
		return false;
	}
	return true;
}
function ShowPopUp(sName,sUrl,w,h,c)
{
   var s, hwin;

   s = 'width=' + w + ',height=' + h
   if( c.length > 0 )
       s = s + ',' + c;
   if( c.length == 0 )
       sName = 'popUp';

   hwin = window.open(sUrl,sName,s);
   hwin.focus();
}

