  function GetDay(intDay){
    var DayArray = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
    return DayArray[intDay]
    }

  function GetMonth(intMonth){
    var MonthArray = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December") 
    return MonthArray[intMonth] 	  	 
    }
	
  function getDateStrWithDOW(){
    var today = new Date()
    var year = today.getYear()
    if(year<1000) year+=1900
    var todayStr = GetDay(today.getDay()) + "&nbsp; "
    todayStr += GetMonth(today.getMonth()) + " " + today.getDate()
    todayStr += "&nbsp; " + year + " &nbsp; " + " &nbsp; " + " London "
    return todayStr
    }	
	
function everySecond() {
	var curDateTime = new Date() 
	 var curDateTime = new Date() 
	 var curHour = curDateTime.getHours()
	 var curMin = curDateTime.getMinutes()
	 var curSec = curDateTime.getSeconds()
	 var curTime = ((curHour < 10) ? "0" : "") + curHour + ":"  + ((curMin < 10) ? "0" : "") + curMin + ":"  + ((curSec < 10) ? "0" : "") + curSec 
 	
	if(document.all)
		document.all("Time").innerHTML = getDateStrWithDOW() + " " + curTime
	else if(document.getElementById)
		document.getElementById("Time").innerHTML = getDateStrWithDOW() + " " + " " + curTime
	

	setTimeout('everySecond()',1000);
}
		
function confimDelete(strMessage)
{
var answer = confirm (strMessage) 
if (answer) 
	return true
else
	return false
}	
 
