	function getElement (id) {
		if (document.getElementById) {
			return document.getElementById(id);
		} else if (document.all) {
			return window.document.all[id];
		} else if (document.layers) {
			return window.document.layers[id];
		}
	}
	function ontargetsubmit ()
	{
		window.s_CallToActionName = "Registration Form:c";
		window.s_First = getElement('registration_first').value;
		window.s_Last = getElement('registration_last').value;
		window.s_Title = getElement('registration_title').value;
		window.s_Company = getElement('registration_company').value;
		window.s_Email = getElement('registration_email').value;
		window.s_Phone1 = getElement('registration_phone').value;
		SendPage();
	}