function openURL(url, target){
  newWin=window.open(url, target, "width=750,height=300,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,menu=yes");
  newWin.focus();
  return false;
}

function openMail(url, target){
  newWin=window.open(url, target,"width=500,height=400,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No");
  newWin.focus();
  return false;
}