//
// Various commonly used routines
//

var viztime = 0;
var viztime2 = 0;

function MyFunctionL()
{
	var my_mber = "";
	var my_mberpss = "";
	
	my_mber = window.document.logfrm.usename.value;
	my_mberpss = window.document.logfrm.uspass.value;
	
	if(viztime == 0)
	{
		alert('The unauthorized use of this service by an Expedient Towncar Inc. or non-Expedient Towncar Inc. party is a violation of Expedient Towncar Inc. policy and may result in disciplinary sanctions, up to and including termination of employment, as well as civil or criminal penalties.') 
		viztime = 1;
	} 
	if(my_mber.length ==0)
	{   
		alert('Please enter your username')
		window.document.logfrm.usename.focus();
		return false;
	}
	if(my_mberpss.length ==0)
	{   
		alert('Please enter your password')
		window.document.logfrm.uspass.focus();
		return false;
	}
	else
	{
		if(viztime2 == 0)
		  {
			alert('The system could not log you in, make sure your user name is correct, and then type your password again. Letters in password must be typed using the proper case.Make sure the Caps Lock is not accidentally on.') 
			viztime2 = 1;
		  }
		else
		  {
			alert('Incorrect username or password!')
		  }
	window.document.logfrm.usename.value="";
	window.document.logfrm.uspass.value="";
	}
}


function press()
{if (event.button==2) {
alert('The contents and images on this site are subject to copyright!')}}
document.onmousedown=press