function fl_pageOnLoad()
{
}
function fl_RequestNavigation(sNavigate)
{
var thisForm=document.Introduction;
var known_applicant = "0";
if(thisForm.KNOWN_APPLICANT.checked == true)known_applicant = "1";
var passData = "?data="+thisForm.EXP_REASON.value+known_applicant;
parent.location.href=GetServerPath("SecureHTTP","wiseconsumer/")+"secure_index.html"+passData;
}
function fl_RequestSubmit()
{
var thisForm=document.Introduction;
if(thisForm.read_privacy.checked==false)
{
alert("You must confirm that you have read and understood the privacy statement.");
thisForm.read_privacy.focus();
return;
}
if(thisForm.EXP_REASON.value=="")
{
alert("You must indicate the reason you are applying for your credit file.");
thisForm.EXP_REASON.focus();
return;
}
RequestNavigation();
}



