
		//To open a pop-up.
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->




		//This script is used to calculate time for when the student is taking the course.
<!--
var clock=new Date();                                   //when the visitor enter to the site the clock start working    
var startTime=clock.getTime();
function showTime()                                             //when the visitor out from the site start calculate the time 
                                                                                                    //he was in the site
{
var leaveTime=new Date();
var totalTime=((leaveTime.getTime()-startTime)/1000); //total time in seconds
var hTimerLast=Math.floor(totalTime/3600);      //check hours
var mTimerLast=Math.floor((totalTime%3600)/60); //check minutes
var sTimerLast=Math.floor(totalTime%60);        //check seconds 
alert("Time on this page: "+hTimerLast+" Hours "+mTimerLast+" Minutes "+sTimerLast+" Seconds.\n\nPlease be advised: This is the time spent on THIS page. If you reload or proceed, this visual timer will reset.\nHowever, the ACTUAL time you have spent in this section is recorded unless you log off.");
}
//-->
