﻿// JScript File
  var fillout = false;
        window.onbeforeunload = checkName;
    function checkName() 
    { 
        if (document.getElementById("_ctl0_Content_hdnNavigation")!=null)
        {
            if ( document.getElementById("_ctl0_Content_hdnNavigation").value == "1")
            {
                return;
            }
        }
         
	    var f = document.forms[0]; 
	    var oldLocation = window.location;
	    var url = location.href;
	    if(oldLocation == url)
	    {
	       if (fillout)                   
	       { 
	         fillout=false;                                                                                                                                               
             return;   
	       }
	       event.returnValue = "The qualification form takes 2 minutes to complete";
	    }
    }


