// JavaScript Document

/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by:  |  */
function mailsome1() {
  who=prompt("Enter recipient's email address: ","joyce@webjericho.com");
  what=prompt("Enter the subject: ","none");
  if (confirm("Are you sure you want to mail "+who+" with the subject of "+what+"?")==true) {
    parent.location.href='mailto:'+who+'?subject='+what+'';
  }
}

