var MIN_VAL = 400, MAX_VAL = 900, SAFE = 0, DAYS = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'), MONTHS = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
function GetVisitors(){return (Math.floor(Math.random() * (MAX_VAL - MIN_VAL)) + MIN_VAL);}
function GetDate(){var now = new Date(); return DAYS[now.getDay()] + ", " + MONTHS[now.getMonth()] + " " + ((now.getDate()<10) ? "0" : "") + now.getDate() + ", " + (now.getYear() < 1000 ? now.getYear() + 1900 : now.getYear()) ;}
function PutData(){var vc = document.getElementById('vcnt');	var ud = document.getElementById('udate'); if(vc && ud){vc.innerHTML = GetVisitors(); ud.innerHTML = GetDate();} else{if(SAFE<100){	SAFE++; setTimeout("PutData()", 200);} else window.status = 'Page error';}}
PutData();
