var _l1 = document.forms['Extranet_Form'];
function SetLoginForm ()
{
	var _l2 = _l1.loginarea;
	var action = _l1.loginarea.value.split ( "|" );
	if ( action[0] == "_blank" )
	{
		window.location.href = action[1];
	} // end if
}
function EnactAccountLogin ()
{
	var _l2 = _l1.loginarea;
	var IsGoodtoGo = true;
	if ( _l1.loginarea.value != "_self|extranet" )
	{
		var action = _l1.loginarea.value.split ( "|" );
		_l1.action = action[1];
	} // end if
	if ( _l1.user.value == "" || _l1.user.value == 'Please enter a password' )
	{
		IsGoodtoGo = false;
		_l1.user.value = 'Please enter a username';
		_l1.user.focus ();
	} // end if
	else if ( _l1.pass.value == "" || _l1.pass.value == 'Please enter a password' )
	{
		IsGoodtoGo = false;
		_l1.pass.focus ();
	}
	else if (_l1.loginarea.value == "") {
		IsGoodtoGo = false;
		alert("Please select a service to login to.");
	} // end else if
	if ( IsGoodtoGo && _l1.loginarea.value != "_self|extranet" )
	{
		if ( confirm ( 'You are going to login to another CartridgeWorld verified website.\nAre you sure you want to continue?' ) )
		{
			/* CW Connect ----------------------------------- */
			_l1.user_id.value = _l1.user.value;
			_l1.password.value = _l1.pass.value;
			/* Shop CW -------------------------------------- */			
			_l1.retemail.value = _l1.user.value;
			_l1.retpwd.value = _l1.pass.value;
			/* Franchise Marketing Center ------------------- */
			_l1.Login1email.value = _l1.user.value;
			_l1.Login1password.value = _l1.pass.value;
			_l1.Username.value = _l1.user.value;
			_l1.Password.value = _l1.pass.value;
			/* Global Tech Support -------------------------- */
			_l1.jah22sdgfk.value = _l1.user.value;
			_l1.askh867d.value = _l1.pass.value;
			_l1.submit ();
		} // end if
		else
		{
			_l1.user.focus ();
		}
	} // end if
	else if ( IsGoodtoGo )
	{
		_l1.submit ();
	} // end else
} // end function
_l1.onkeypress = function ( event )
{
	if ( event.keyCode == 13 )
	{
		_l1.submit ();
	}
}