// JavaScript Document
function emailSent(firstName) 
{
popup=window.open("","emailSent","top=250,left=448,height=200,width=200,resizable=no,scrollbars=no");
popup.document.write("<html><head><title>Email Sent</title><link href='../../scripts/css/style.css' rel='stylesheet' type='text/css'></head><body leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0'><table align='center' width='200' height='200' border='0' cellpadding='10 cellspacing='0'><tr><td><br><b>" + firstName + "</b>,<br><br>Your e-mail has been sent; thank you for contacting Culinary Associates.  One of our representatives will reply to you.</td></tr><tr><td align='center'><form><input type='button' value='close' onClick='self.close()'></form></td></tr></table></body></html>");
}

