function move_in(img_name,img_src) {
if (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))){
document[img_name].src=img_src;
}
}

function move_out(img_name,img_src) {
if (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))){
document[img_name].src=img_src;
}
}

var timerID = null;
var timerRunning = false;

function stopclock (){
   if(timerRunning)
   clearTimeout(timerID);
   timerRunning = false;
}

function startclock () {
stopclock();
showtime();
}

function showtime () {
var now = new Date();
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) ? " PM" : " AM"
window.status = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
function pageload(weburl) {
if (weburl !=""){
if (navigator.appName == "Netscape") {
  parent.location.href=weburl;
}else{
  parent.location=weburl;
}
}
}
function moveIt() {

var IE4 = (document.all && !document.getElementById) ? true : false;
var NS4 = (document.layers) ? true : false;
var IE5 = (document.all && document.getElementById) ? true : false;
var N6 = (document.getElementById && !document.all) ? true : false;


   if(document.layers) {
      document.bfly.left += 2;
      document.bfly.top -= 2;
      if (document.bfly.left >280) {
	document.bfly.left = 0;
      }
   if (document.bfly.top < 0) {
        
	document.bfly.top = 280;
      }
   } else if (document.all) {
      bfly.style.top = parseInt(bfly.style.top) - 2;
      bfly.style.left = parseInt(bfly.style.left) + 2;
      if (parseInt(bfly.style.top) < 0) { 
	bfly.style.top = 280;
      }
     if (parseInt(bfly.style.left) > 280) {
	bfly.style.left = 0;
      }
} else if(N6) {
document.getElementById('bfly').style.top = parseInt(document.getElementById('bfly').style.top) - 2;
document.getElementById('bfly').style.left = parseInt(document.getElementById('bfly').style.left) + 2;
if (parseInt(document.getElementById('bfly').style.top) < 0) { 
	document.getElementById('bfly').style.top = 280;
      }
     if (parseInt(document.getElementById('bfly').style.left) > 280) {
	
document.getElementById('bfly').style.left = 0;
   }
}
   if ((document.layers) || (document.all) || (N6)) {
     setTimeout('moveIt()', 40);
}
}
var speed = 100;
var cycledelay = 4000;
var maxsize = 28;

var x = 0;
var y = 0;
var themessage, size;
var esize = "</font>";
var pw = "wwwboard"
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
   }
}