//openHelp è il nome della funzione
function openHelp(url) {
	wdetail=window.open(rebaseUrl(url), 'HELP','height=400,width=580,hotkeys=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
	wdetail.focus();
}

function openSendMail(url) {
	wdetail=window.open(rebaseUrl(url), 'INVIO','height=550,width=580,hotkeys=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
	wdetail.focus();
}

function openDetail(url,name) {
	wdetail=window.open(rebaseUrl(url), name,'height=650,width=580,hotkeys=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
	wdetail.focus();
}

function openChangeStatus(url,name) {
	wdetail=window.open(rebaseUrl(url), name,'height=500,width=750,hotkeys=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
	wdetail.focus();
}

function rebaseUrl(url) {
  var b = document.getElementsByTagName('base');
  if (b && b[0] && b[0].href) {
    return b[0].href + url;
  }
  else return url;

}
