<!-- Begin -------------------



/* This Java Script is owned exclusively by Ώ ‘Ηκ Ώ and M & M Technologies Corporation. 
This script was written by Mike (Ώ ‘Ηκ Ώ) Morris for self use and commercial use by M & M Technologies 
only!! All copyright infringment instances will be prosecuted.
©2000-2001 M & M Technologies Corporation. All rights reserved.

*/


var clock=new Date();					    
var startTime=clock.getTime();
function showTime()						 
												    
{
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("Awww, leavin already? :*(  Well, youv'e been in my world for "+hTimerLast+" Hours "+mTimerLast+" Minutes "+sTimerLast+
" Seconds .");
}
//  end -->
