function TermsAndConditions()
{
	helpWindow = window.open( "http://www.our1stdate.com/terms_conditions.asp", "popuptermsandconditions", "HEIGHT=300, WIDTH=800, scrollbars=1" );
	helpWindow.focus();
}

function CheckboxChecked(formField,fieldLabel)
{
	var result = true;
	
	if (formField.checked == 0)
	{
		alert('You must read and agree to the Terms and Conditions before you can join Our Site.');
		formField.focus();
		result = false;
	}
	
	return result;
}

function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('You must read and agree to the Terms and Conditions before you can join.');
return false;
}else
return true;
}