/* mailsomeone.js wmgroup May 24 */


<!-- Begin
function mailsome1(){
who=prompt("Enter recipient's email address: ","");
what=prompt("Enter the subject: ","Re - Go to this site: - http://www.wmgroup.cjb.net/");
if (confirm("Are you sure you want to mail "+who+" with the subject of "+what+"?")==true){
parent.location.href='mailto:'+who+'?subject='+what+'';
}
}
// End -->