


function checkPassword( sUser, sPassword )
{
	if ( sPassword == "bluemoon" )
	{	
		return true;
	}
	return false;
}
