function loadDoc()
{
    document.MAILFORM.FROM.click();
    return;
}

function CheckConfirmFields()
{
	var iOk;
	iOk = 1;
	if ((document.Tempuair.ContactName.value == '') || 
	   (document.Tempuair.Telephone.value == '') || 
	   (document.Tempuair.EmailAddress.value == ''))
		{
		alert("Sorry, you have not provided us with enough information.\n\nThe following are required before you can submit your registration:\n- Contact Name\n- Telephone Number\n- Email Address");
		iOk = 0;
		}
	if (iOk == 1)
		{
		document.all.submitline.style.display='none'
		return true;
		}
	else
		{
		return false;
		}
}
