function createPopup(popupfile,w,h)
{
  var hwnd;
  hwnd = window.open (popupfile, 'popup', 'width='+w+',height='+h+',scrollbars=yes,toolbar=no,noresize,menubar=no,screenX=120,screenY=20,top=20,left=120');
  if(!hwnd.opener) hwnd.opener=self;
  if(hwnd.focus!=null) hwnd.focus();
  return false;
}

function checkRicerca()
{
    if (document.frmCercaNelSito.searchkey.value=='')
      {  
        //alert("Attenzione! Non hai inserito la parola da cercare" + document.frmCercaNelSito.searchkey.value);
		document.frmCercaNelSito.searchkey.focus();
        return (false)
     }
}

function checkSondaggio()
{
    bol= 0;
    for (i=0; i<= document.frmSondaggio.votazione.length-1; i++) {
      if (document.frmSondaggio.votazione[i].checked == 1) bol=1;
    }

    if (bol==0)
      {
        alert("Attenzione! Bisogna fare almeno una scelta");
        return (false)
      };

    if (bol==0) return true;
}

