// JavaScript Document
// webbot bot="ElScripto" endspan i-checksum="584" 
// webbot bot="ElScripto" startspan preview="[Current Time]" 
// This JavaScript was generated by El Scripto from A Big Lime. For more information visit www.elscripto.com. 
							function writeTime(m,sep) 
							{ 
							dateNow = new Date(); 
							whichSecond = dateNow.getSeconds() + ""; 
							whichMinute = dateNow.getMinutes() + ""; 
							whichHour = dateNow.getHours() + ""; 
							if (whichHour < 10) 
							{ 
							milHour = "" + "0" + whichHour; 
							} 
							else milHour = whichHour + ""; 
							if (whichHour >= 12)  
							{ 
							AMorPM = "PM"; 
							whichHour = whichHour - 12; 
							} 
							else AMorPM = "AM"; 
							if (whichHour < 1) whichHour = 12; 
							if (whichSecond < 10) whichSecond = "" + "0" + whichSecond; 
							if (whichMinute < 10) whichMinute = "" + "0" + whichMinute; 
							if (m==0) document.writeln(whichHour + sep + whichMinute + sep + whichSecond + " " + AMorPM); 
							if (m==1) document.writeln(dateNow.getHours() + sep + whichMinute + sep + whichSecond); 
							if (m==2) document.writeln(milHour + whichMinute + " hours"); 
							} 
							writeTime(0,":"); 
						//
						//webbot bot="ElScripto" endspan i-checksum="3183" 
