<!-- 

var today = new Date(); 
var time = today.getHours(); 

if ( time <= "11" ) 
{
		var pesan = "Good Morning," 
}
else
if (time <= "17")
{
		var pesan = "Good Afternoon,"
}
else
{ 
		var pesan = "Good Evening,"
}

function runClock() 
{
	theTime = window.setTimeout("runClock()", 1000);
	var today = new Date();
	var display= today.toLocaleString();
	status=display;
}

    
//--> 