// JavaScript Document
<!--
var yourwords = "厦门盘石文化传播有限公司";
var speed = 700;
var control = 1;

function flash()
{

var now = new Date();
var months = now.getMonth();
var days = now.getDay();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
timeValue += (hours >= 12) ? " 下午" : " 上午"

if (control == 1)
{
window.status=yourwords+" " + timeValue;
control=0;
} 
else
{
window.status="厦门盘石文化传播有限公司 " + timeValue;
control=1;
}
setTimeout("flash()",speed);
}
window.onload=flash
// -->
