var sStatMsg;
var iStatPos;

function ScrollStatMsg() {

	window.status=sStatMsg.substring(iStatPos, sStatMsg.length) + sStatMsg.substring(0, iStatPos);
	iStatPos++;

	if ( iStatPos > sStatMsg.length )  iStatPos=0;
	window.setTimeout("ScrollStatMsg()", 150);
}


function SetStatusMsg(sMsg) {

	sStatMsg=sMsg+"...                   ...";
	iStatPos=0;

	ScrollStatMsg();
}


function WriteHead() {

	window.status="";

	document.bgColor="339933";
	document.linkColor="white";
	document.vlinkColor="white";
	document.alinkColor="white";

	document.write("<TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=0 ALIGN=center>");
	document.write("<TR><TD>");
	document.write("<DIV ALIGN=center>");
	document.write("<IMG SRC=../pic/ktc.gif ALIGN=center WIDTH=538 HEIGHT=89 BORDER=0 ALT='KTC banner'>");
	document.write("<BR CLEAR=all><BR><BR><BR>");
	document.write("</DIV>");
	document.write("<TR><TD>");
}


function WriteDiv() {

	document.write("<DIV ALIGN=center>");
	document.write("<BR>");
	document.write("<IMG SRC=../pic/divide.gif ALIGN=center WIDTH=460 HEIGHT=11 BORDER=0>");
	document.write("<BR CLEAR=all>");
	document.write("<BR><BR>");
	document.write("</DIV>");
}
