
    
/***********************************************************************
                INSERIMENTO VOTO
*/
function controlloInserimentoVoto(id){
    if(document.getElementById(id).value == ""){
        alert("Inserire secure code.");
        return false;
    }
    return true;
}

/************************************************************************
            FORM RICERCA
*/

function linkDirectory(idDirectory){
    document.getElementById("ctl00_ContentPlaceHolder1_HddF_idDirectory").value = idDirectory;
    
    __doPostBack('ctl00$ContentPlaceHolder1$LnkB_directory',''); 
    
    return false;
}

function linkCategory(idDirectory, idCategory){
    document.getElementById("ctl00_ContentPlaceHolder1_HddF_idDirectory").value = idDirectory;
    document.getElementById("ctl00_ContentPlaceHolder1_HddF_idCategory").value = idCategory;
    
    __doPostBack('ctl00$ContentPlaceHolder1$LnkB_categories',''); 
    
    return false;
}



function openSite(urlSite, listId){
    
    //apro sito selezionato
    window.open('http://' + urlSite ,'','');
    
    //incremento click sito
    document.getElementById("ctl00_ctl00_ContentPlaceHolder1_ContentCinema_Elenco1_HddF_listId").value = listId;
    __doPostBack('ctl00$ctl00$ContentPlaceHolder1$ContentCinema$Elenco1$LnkB_insertClickSito', ''); 
    
    return false;
}

/*

*/

function paginazione(pageIndex){
    alert(pageIndex);
    page = 'Page$' + pageIndex;
    
    __doPostBack('ctl00$ContentPlaceHolder1$GrdV_risultatoRicerca',page);
    
    alert(fine);
}



