// JavaScript Document
function segnalaAmico(lang, ps_id, type) {
    var htmlUrl = '/'+lang+'/segnala.php?PS_ID='+ps_id+'&TYPE='+type;
    var features = 'width=500,height=650';
    //alert(htmlUrl);
    var myWin = window.open(htmlUrl,'SEGNALA',features);
    myWin.focus();
    return(false);
} // segnalaAmico
