/*
=======================================================================================
'
'	Filename:		login_check.js
'	Description:	Login check javascript
'	Author:			Joanna Araminta
'   CVS Info:       $Id: login_check.js,v 1.2 2005/11/25 00:29:25 Guest Exp $
'	
'=======================================================================================
*/

	function inputCheck() {

		var username, password;

		username = document.loginForm.username.value;
		password = document.loginForm.password.value;

		if (username == "")
		{
			alert("Either the password you entered is incorrect or the username you entered is not registered for VicForests Simultaneous Multi-Round Auctions system.");
			return false;

		}

		if (password == "")
		{
			alert("Either the password you entered is incorrect or the username you entered is not registered for VicForests Simultaneous Multi-Round Auctions system.");
			return false;
		}

	}
