
<!-- Begin
function goToURL() { window.location = "http://freemail.rideconnection.net/cgi-bin/messenger/messenger.cgi?Register"; }
//  End -->

<!-- Begin
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->

<!-- Begin
function InitializeForm() {
document.login.user.value = GetCookie('user');
document.login2.user.value = GetCookie('user');
}
function GetCookie(name) {
var cookiecontent = ''; 
if(document.cookie.length > 0) {
	var cookiename = name + '=';
	var cookiebegin = document.cookie.indexOf(cookiename);
	var cookieend = 0;
	if(cookiebegin > -1) {
		cookiebegin += cookiename.length;
		cookieend = document.cookie.indexOf(";",cookiebegin);
		if(cookieend < cookiebegin) { cookieend = document.cookie.length; }
		cookiecontent = document.cookie.substring(cookiebegin,cookieend);
		cookiecontent = unescape(cookiecontent);
	}
}
return cookiecontent;
}

// End -->