function FYHNewsletterPopUp(x,y)
{
	var FYHNewsletterPopUpHtml = '' +
	
	'<div style="width:310px;">' +
	'	<div class="cf">' +
	'		<img src="/images/fyhpu-Jt.gif" width="37" height="28" border="0" class="left" style="margin-left:19px;" />' +
	'		<div class="right" style="width:254px;">' +
	'			<div class="txtB txtR FYHPUfs" style="padding:13px 10px 0 0; color:#333399;">Presented by Allen S. Josephs, M.D.</div>' +
	'		</div>' +
	'	</div>' +
	'	<img src="/images/fyhpu-Hdr.gif" width="310" height="75" border="0" />' +
	'	<div class="cf" style="padding-top:16px;">' +
	'		<div class="left" style="width:261px;">' +
	'			<ul class="linkList3 FYHPUfs" style="margin-left:15px;">' +
	'				<li>Latest medical news and insight</li>' +
	'				<li>Expert nutritional supplement advice</li>' +
	'				<li>Written by Dr. Allen S. Josephs</li>' +
	'			</ul>' +
	'		</div>' +
	'		<div class="right" style="width:49px;">' +
	'			<img src="/images/fyhpu-Arw.gif" width="32" height="46" border="0" style="margin-top:5px;" />' +
	'		</div>' +
	'	</div>' +
	'	<div class="FYHPUfs" style="padding:9px 13px 13px 13px; color:#333399">Sign up for our <b>Free</b> Weekly Health Information.<br>Your <a href="/otherfiles/privacy.html" target="_blank" style="color:#333399;">privacy</a> is guaranteed. We will never share your email address with other companies.</div>' +
	'	<div class="cf" style="padding-left:13px;">' +
	'		<div class="left FYHPUfs" style="width:40px; padding-top:3px;">Email:</div>' +
	'		<form name="fyhSignUpFrm" method="post" action="/Articles/NewsletterSignup.aspx" onSubmit="return FYHNewsletterPopUpChk(document.fyhSignUpFrm.email.value);">' +
	'			<input type="hidden" name="fromFYHpop" value="yes">' +
	'			<input type="hidden" name="SiteCatalyst_isrc" value="FYH-click">' +
	'			<div class="left" style="width:179px;">' +
	'				<input class="inputTxt" type="text" name="email" style="width:172px">' +
	'			</div>' +
	'			<div class="left" style="width:65px; padding-top:2px;">' +
	'				<input type="image" src="/images/buttons/btn-SignUp.gif" width="63" height="16" border="0" />' +
	'			</div>' +
	'		</form>' +
	'	</div>' +
	'	<img src="/images/fyhpu-Tgl.gif" width="283" height="22" border="0" style="margin:13px 0 6px 13px;" />' +
	'	<div class="cf" style="padding-left:13px; margin-bottom:9px;">' +
	'		<div class="left" style="width:93px;">' +
	'			<div class="txtR FYHPUfs" style="padding:14px 5px 0 0; color:#7F7F7F">from</div>' +
	'		</div>' +
	'		<div class="left" style="width:128px;"><img src="/images/fyhpu-VCLogo.gif" width="99" height="38" border="0"></div>' +
	'	</div>' +
	'	<div class="cf" style="background-color:#C4141B; padding:8px;">' +
	'		<a class="FYHPUClose" href="javascript:;" onClick="FYHNewsletterPopUpClose()">Close</a>' +
	'	</div>' +
	'</div>';
	
	VitacostMsgBox('FYHNLPopUp', 342, x, y, false, false, false, FYHNewsletterPopUpHtml, 'BorderWidth=3px;BackgroundColor=FFFFFF;Padding=8');
}
function FYHNewsletterPopUpClose()
{
	VitacostMsgBoxRemove('FYHNLPopUp');
}
function FYHNewsletterPopUpChk(EmailAddress)
{
	var FYHEmailExp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if(FYHEmailExp.test(EmailAddress)==false)
	{
		alert("The email address you have entered is invalid. Please correct.");
		return false;
	}else{
		return true;
	}
}