function Login(){

	var done=0;

	var username=document.login.username.value;

	username=username.toLowerCase();

	var password=document.login.password.value;

	password=password.toLowerCase();

	/*if (username=="dealer" && password=="290deal7") 
	{ 
		window.location="http://www.290signs.com/dealerhome/";
		done=1; 
	}
	if (username=="rep" && password=="290rep11") 
	{ 
		window.location="http://www.290signs.com/rephome/";
		done=1; 
	}
	if (username=="unicorrep" && password=="govrep33")
	{ 
		window.location="http://www.290signs.com/govrephome/";
		done=1;
	}*/
	if (username=="tribune" && password=="chitri29")
	{ 
		window.location="http://www.290signs.com/tribune/";
		done=1;
	}
	if (done==0) 
	{ 
		alert("ERROR! Invalid username and/or password. Please enter the correct login information and try again.");
	}
}

