// JavaScript Document
function authenticate() 
{
	if( this.loginForm.password.value == "mchb" )
	{
		this.window.location = "webcastReports.asp";
		return false;
	}
	else
	{
		alert( "I'm sorry, but that is not a valid login/password combination." );
		return false;
	}
}