function mailto(name,place)
{
  document.write("<a href='mailto:" + name + "@" + place + "'>");
}

function openWindow(file,w,h,s)
{
  options = "width=" + w + ",height=" + h + ",resizable=1,scrollbars=" + s;
  window.open(file,"",options);
}
