function disable_component(id) {
   document.getElementById("bottom").className = "disable";
}

function select_tr(id) {
   document.getElementById(id).className = "select_tr";
}

function deselect_tr(id, riga, class_orig) {
   document.getElementById(id).className = class_orig;
}

function open_details(key_row, nome_listino, dimensione) {
   var url;
   url = "page_details.php?listino=" + nome_listino + "&chiave=" + key_row + "&size=" + dimensione;   
   
   if(dimensione == "piccola") {
      newWin = window.open(url, "newWin", "width=350, height=400");
	  newWin.focus();
   }
   if(dimensione == "grande") {
      newWin = window.open(url, "newWin", "width=350, height=600");
	  newWin.focus();
   }
   
   
}

function select_row(id) {
   document.getElementById(id).className = "riga_selezionata";
}

function script_foto_home(partial_nome_foto, testo) {
   var url;
   var nome_foto;
   nome_foto = "upload_foto/full/" + partial_nome_foto + "_max.jpg";
   url = "show_foto_home.php?foto=" + nome_foto + "&testo=" + testo;
   newWin = window.open(url, "newWin", "width=400, height=320");	
   newWin.focus();
}