var txt= document.title;
	//Good
	var dt = new Date();
	var hr = dt.getHours();
	var msgood;
	msgood = ((hr>11)&&(hr<16) ? "Night" : msgood);
	msgood = ((hr <= 12) ? hr : hr - 12);
	msgood = ((hr<12) ? "Morning" :"Evening");
	msgood="Good "+ msgood;
	
<!-- Begin
function settitle() {
var a = txt;
var b = ".:.:.:.:.Hello   " + msgood+".:.:.:.:.";
var c = ".:.:.:.:.Please Wait.....Redirected link to Home.:.:.:.:.";
var d = ".:.:.:.:.Thank you for visiting our Web-Site: www.CSS FL.com.:.:.:.:.";
 var t = new Date();
 s = t.getSeconds();
 if (s == 10) {
  document.title = a;
  window.status = a;}
 else if (s == 20) {
 document.title = b;
 window.status = b;}
 else if (s == 30) {
 document.title = c;
 window.status = c;}
  else if (s == 40) {
 document.title = d;
 window.status = d;}
 else if (s == 50) {
 document.title = a;
 window.status = a;}
 else if (s == 60) {
 document.title = b;
 window.status = b;}
 else if (s == 70) {
 document.title = c;
 window.status = c;}
  else if (s == 00) {
 document.title = d;
 window.status = d;}
 setTimeout("settitle()", 1400);
 }
//  End -->
