﻿// JScript File


function doOnLoad(){
       
      for(var i = 0; i < document.links.length; i++)
      {
        //alert(document.links[i].onclick);
           if (document.links[i].onclick==null)
            { 
               document.links[i].onclick =popupOff;
              
            }
            else
            {
                //else call the popupOff from the already existing OnClick eventHandlers. 
		//This is done in the .js files.
            }
      }
      popUp = true;
}

    function popupOff(){
        popUp = false;
    }
    
    function doOnUnLoad(){
      /*
      if(popUp)OpenSurveyMonkeySurvey();
	*/
    }


function OpenSurveyMonkeySurvey()
{
	
//	var currentUrl=window.location.href.toLowerCase();
	
	
	/*
	if (currentUrl.indexOf("onlinelearningcourse.aspx")>=0 || currentUrl.indexOf("book.html")>=0)
	{
			//alert("exiting onlinelearningcourse");
			/*
			The following code is taken from the <script src="http://www.surveymonkey.com/jsPop.aspx?sm=sx8HHJNBKhUHVSQ3ZWz8Vg_3d_3d"> </script>; provided by PDFA.
		
	}
	*/
    
    //The following code is taken from the <script src="http://www.surveymonkey.com/jsPop.aspx?sm=D3On11xgtJ6rzw50QhdwNA_3d_3d"> </script>; provided by PDFA.
       
	    window.open('http://www.surveymonkey.com/jsPopInvite.aspx?sm=D3On11xgtJ6rzw50QhdwNA%3d%3d', 'win', 'height=160,width=300,scrollbars=yes,resizable=yes,status=yes')
	  
}
