function startclock()
{
var thetime=new Date();

var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var AorP=" ";



if (nsecn<10)
 nsecn="0"+nsecn;

if (nmins<10)
 nmins="0"+nmins;

document.clockform.clockspot.value=nhours+":"+nmins+":"+nsecn;

setTimeout('startclock()',1000);

} 


var CurrentMsg = "Welcome to chexpro.com.hk   "; 

var CurrentPosition = 0; 
function MessageScroll() { 

   status = CurrentMsg.substring(CurrentPosition, CurrentMsg.length)  + CurrentMsg.substring(0, CurrentPosition); 
   CurrentPosition++; 
   if (CurrentPosition > CurrentMsg.length) CurrentPosition = 0; 
// set timeout for next update 
   window.setTimeout("MessageScroll()",100); 
} 
// Start the scrolling message 
MessageScroll(); 

 function makeDefault(element) 
{ 
element.style.behavior='url(#default#homepage)';  
element.setHomePage('http://www.chexpro.com.hk'); 
} 
