/* Weaky trick to cheat with target=_blank attribute in strict XHTML  */
function openLinkInPopupWhenClick(a)
{
  window.open(a.href,'_blank');
  return false;
}
