<!--
function changeClass(the_div,the_change) {
  document.getElementById(the_div).className = the_change;
}
function doClear(theField) {
     if (theField.value == theField.defaultValue) {
         theField.value = "";
		 theField.style.color = "000000";
	 }
}
function changeToPass(theField) {
     doClear(theField);
	 if (theField.type == 'text') {
         theField.type = "password";
     }
	 theField.focus();
}
function go() {}

function pausecomp(millis)
	{
	var date = new Date();
	var curDate = null;
	
	do { curDate = new Date(); }
	while(curDate-date < millis);
}

-->