// JavaScript Document
function contactConfirm(name,emailAddress) 
{
popup=window.open("","popup","top=110,left=215,height=175,width=300,resizable=no,scrollbars=no");
popup.document.write("<html><head><title>Email Confirmation</title></head><body bgcolor='#EBEBFF'><table width='200' height='175' border='0' align='center' cellpadding='0' cellspacing='0' style='font-family:Arial;font-size:12px'><tr><td align='center'>Email Sent<hr size='1' width='100%' color='#ACA9A0' noshade></td></tr><tr><td>" + name + ",<br><div align='justify'>Your e-mail has been sent; thank you for contacting From Yes To I Do.  One of our representatives will reply to you at:</div></td></tr><tr style='padding-top:0px'><td align='center'><b>" + emailAddress + "</b></td></tr><tr style='padding-top:5px'><td align='center'><form><input type='button' value='close this window' onClick='self.close()'></form></td></tr></table></body></html>");
}
