function CheckPregnancy(e,CheckBoxId)
{
	var error_message = 'We are unable to make a recommendation to pregnant and nursing mothers. We advise you to consult with your physician in order to plan your supplement planning.';
	if(document.getElementById(CheckBoxId).checked)
	{
		var PregnancyMsg = '<div class="errorMsg" style="padding:0 0 5px 0;">'+ error_message +'</div>';
		VitacostMsgBox('PregnancyMsgBox', 335, MousePosition(e, true, true).x, MousePosition(e, true, true).y, false, true, false, PregnancyMsg, 'BackgroundColor=FDFDEA;Padding=10;ShowCloseLink=True');
	}
	else
	{
		VitacostMsgBoxRemove('PregnancyMsgBox');
	}
	//doucment.forms[0].gender[0]
	//alert(doucment.forms[0].gender[0]);
}

function TermsAndCondition(e)
{
	var TermsAndConditionsMsg = '<div style="padding:0 0 5px 0;"><span class="fs2 txtB">Vitamin Guide Terms And Conditions Of Use</span><br><br><b>THE INFORMATION ON THIS SITE IS NOT FOR USE IN THE DIAGNOSIS OR TREATMENT OF DISEASE!</b><br><br>This information provided on this Web site is for educational purposes only. If you have, or suspect that you have, a health condition, consult with a licensed health care professional. Do not use the content of this site to self diagnose or treat any health condition. Do not take any dietary supplement or commence any exercise regimen without consulting with a physician. Strictly adhere to all labeling instructions for products or services purchased from this site. Any deviation from directions for use may result in injury. Discontinue use of any product or service purchased from this site and contact a health care provider immediately if you experience any adverse reaction. Never disregard professional medical advice or delay seeking professional advice. Information provided on this Web site, or the use of products or services purchased from our Web site, does not create a doctor-patient relationship between you and any of the physicians affiliated with Vitacost.com. Information and statements regarding dietary supplements have not been evaluated by the Food and Drug Administration and are not intended to diagnose, treat, cure, or prevent any disease.</div>';
	VitacostMsgBox('TermsAndConditionsMsgBox', 500, MousePosition(e, true, true).x, MousePosition(e, true, true).y, false, true, true, TermsAndConditionsMsg, 'BackgroundColor=FFFFFF;Padding=10;ShowCloseLink=True');
}