function go(link) {
   document.location.href = link;
}
function show_element(id, visible) {
   if (visible) {
      jQuery('#' + id).show();
   } else {
      jQuery('#' + id).hide();
   }
   return false;
}
