function popup(url, larghezza, altezza)
{	
	mywin = window.open(url, "_blank",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + larghezza + ',height=' + altezza + '');
	//mywin.moveTo(0, 0)
}

function checkRicerca()
{
	if(document.home.txtSearch.value == '')
	{
		alert('Insert the keys search');
		document.home.txtSearch.focus();
		return false;
	}
	
	return true;
}




