function LoginFocus() {
	document.login.userID.focus()
}
function checkForm() {
   document.login.userID.value = RemoveBad(document.login.userID.value);
   return false;
}

//******************************************************
//Description: Removes bad characters.
//******************************************************

function RemoveBad(strTemp) {
strTemp2=new String(strTemp);
   strTemp2 = strTemp2.replace(/[\[\]\*{}<>\"\'%;\()&+-]/g, "");
   return strTemp2;
}

function showVideo() {
	document.getElementById("divVideo").innerHTML = "<iframe src=\"/video.html\" width=\"300\" height=\"225\" scrolling=\"no\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\"></iframe>"
}