// JScript source code

		
								/*
								Upper Corner Live clock script credit: JavaScript Kit (www.javascriptkit.com)
								More free scripts here!
								*/
																
								function show5(){
								if (!document.layers&&!document.all&&!document.getElementById)
								return

								var Digital=new Date()
								var hours=Digital.getHours()
								var minutes=Digital.getMinutes()
								var seconds=Digital.getSeconds()

								var dn="pm"
								if (hours<12)
								dn="am"
								if (hours>12)
								hours=hours-12
								if (hours==0)
								hours=12

								if (minutes<=9)
								minutes="0"+minutes
								if (seconds<=9)
								seconds="0"+seconds
								//change font size here to your desire
								myclock="<font size='1.5' face='verdana'><font size='2' face='Verdana'>Time is money! </font><b>"+hours+":"+minutes+":"
								+seconds+" "+dn+"</b></font>&nbsp;&nbsp;"
								if (document.layers){
								document.layers.liveclock.document.write(myclock)
								document.layers.liveclock.document.close()
								}
								else if (document.all)
								liveclock.innerHTML=myclock
								else if (document.getElementById)
								document.getElementById("liveclock").innerHTML=myclock
								setTimeout("show5()",1000)
								}


							//	window.onload=show5
								
								<!-- This script and many more are available free online at -->
								<!-- The JavaScript Source!! http://javascript.internet.com -->
								
								<!-- Begin
								Stamp = new Date();
								year = Stamp.getYear();
								if (year < 2000) year = 1900 + year;
								document.write('<font size="1" face="verdana"><B>' + Stamp.getDate() +"/"+(Stamp.getMonth() +1 )+ "/"+ year + '</B></font>&nbsp;&nbsp;');

								//-->

