﻿// File JScript

function OpenDetail(id)
{
    wndDett = window.open(AspPath + 'dettaglio.aspx?qsId='+id,'wndDett','width=640,height=480,menubar=no,scrollbars=yes,statusbar=yes,location=yes');
    wndDett.moveTo(1,1);
    wndDett.focus();
   
}


function ShowMessage(redir)
{
    var messaggio = '';
    try
    {
       messaggio = document.getElementById('hdnMessaggio').value;
    }
    catch(ex)
    {
       messaggio = '';
    }

    
    if(messaggio.length > 0 )
    {
      var s = messaggio.split("acapo")
      var nm ="";
      for(i = 0; i<s.length; i++)
      {
        nm +=s[i] + "\n";
      }
      alert(nm);
    }
    
    if(redir.length > 0)
    {
      window.location.href = redir;
    }
}


