﻿// mail_button.js
// select subject
// Nov 2007, Nichole Koonce

var myemail = "nichole_knc@yahoo.com";

function sendMail()
{
	
if (confirm("You are about to send email to "+myemail+". This will open your default email program to send this mail. I do not share email addresses with third parties..")==true)
	{
	 parent.location.href="mailto:"+myemail+"?subject=Offer on the Greedy Girls Club Domain";
	}
	else alert("Mail canceled")
}

function formCheck() 
{
var passed = false;
if (Subject.selectedIndex == 0) 
	{ 
	alert("Please pick a subject.");
	Subject.focus();
	}
else 
	{
	sendMail();
	passed = true;
   	}
}

function sendMail2()
{
	
if (confirm("You are about to send email to "+myemail+". This will open your default email program to send this mail. I do not share email addresses with third parties..")==true)
	{
	 parent.location.href="mailto:"+myemail+"?subject=Offer on the Escorts4hire Domain";
	}
	else alert("Mail canceled")
}

function formCheck() 
{
var passed = false;
if (Subject.selectedIndex == 0) 
	{ 
	alert("Please pick a subject.");
	Subject.focus();
	}
else 
	{
	sendMail2();
	passed = true;
   	}
}

