function time(){
 var presentTime = new Date()
  var hours = presentTime.getHours()
  var minutes = presentTime.getMinutes()
  var seconds = presentTime.getSeconds()
  var sambutan = "";
 
  if (hours == 24 ) { hours = 0; }
  if (hours >= 0 && hours < 6) { sambutan = "Good A.M."; }
  if (hours >= 6 && hours < 12) { sambutan = "Good morning"; }
  if (hours >= 12 && hours < 16) { sambutan = "Good noon"; }
  if (hours >= 16 && hours < 19) { sambutan = "Good afternoon"; }
  if (hours >= 19 && hours <= 24) { sambutan = "Good evening"; }
  
  var AMORPM = "AM";
  if (hours >= 12 ) {  hours -= 12; AMORPM = "PM";  }
  if (AMORPM == "PM" && hours == 0) { hours = 12;  }


  if (hours < 10 ) { hours = "0" + hours; }
  if (minutes < 10){ minutes = "0" + minutes;  }
  if (seconds <10) { seconds = "0" + seconds; }

  window.status = " "+sambutan+", the time is "+hours+":"+minutes+":"+seconds+" "+AMORPM+"   Local time is based on GMT +7";
document.getElementById('Layer1').style.top=document.body.scrollTop;
 var filename = document.location.href;								  
filename = filename.substr(filename.lastIndexOf("/") + 1);  						
 if ( filename=="emailform.htm" ) {  document.getElementById('Layer1').value=""; } 
  setTimeout("time()",1);
  }
  
    function closelayers() {
  


  var Layer7 = document.getElementById('Layer7');
  var Layer8 = document.getElementById('Layer8');
  var Layer9 = document.getElementById('Layer9');
  var Layer10 = document.getElementById('Layer10');
  var framesrc = document.getElementById('framesrc');
  Layer7.parentNode.removeChild(Layer7);
  Layer8.parentNode.removeChild(Layer8);
  Layer9.parentNode.removeChild(Layer9);
  
  Layer10.style.width = '850px';
  Layer10.style.height = '2500px';
  Layer10.style.left = '0px';
  Layer10.style.top = '0px';
  Layer10.style.position = 'absolute';
  Layer10.style.overflow = 'hidden';
  
  var filename = document.location.href;								                
  filename = filename.substr(filename.lastIndexOf("/") + 1);  							
  if ( filename=="emailus.htm" ) {  framesrc.src="../emailform.htm"; }    
  else if ( filename=="guestbook.htm" ) { framesrc.src="http://books.dreambook.com/frast/guestbook.html"; } 
  else if ( filename=="chatroom.htm" ) {  framesrc.src="../chatroomrbottom.htm"; } 
  else if ( filename=="kursh.htm" ) {  framesrc.src="../kurshrbottom.htm"; } 
  else if ( filename=="careerh.htm" ) {  framesrc.src="../careerform.htm"; } 
  else if ( filename=="en.emailus.htm" ) {  framesrc.src="../emailform.htm"; }    
  else if ( filename=="en.guestbook.htm" ) { framesrc.src="http://books.dreambook.com/frast/guestbook.html"; } 
  else if ( filename=="en.chatroom.htm" ) {  framesrc.src="../chatroomrbottom.htm"; } 
  else if ( filename=="en.kursh.htm" ) {  framesrc.src="../kurshrbottom.htm"; } 
  else if ( filename=="en.careerh.htm" ) {  framesrc.src="en.careerform.htm"; } 
  framesrc.style.width = '850px';
  framesrc.style.height = '2500px';
  framesrc.style.left = '0px';
  framesrc.style.top = '0px';
  framesrc.style.position = 'absolute';
  framesrc.style.overflow = 'hidden';
  framesrc.style.scrolling = 'auto';
  framesrc.style.frameborder = '0';
  framesrc.style.align = 'left';
  
}
