function checkOther(el){
	document.getElementById('customer_class').value = el.options[el.selectedIndex].value;
}

// e = xactware email address
// s = subject of the email
function email(e,s){
	window.location = "mailto:" + e + "@" + "xactware.com?subject=" + s;
}

function join(){
	$("#joinPopup").dialog({autoOpen: false, height: 200, width: 410, buttons: {
				"Submit": joinPopupSubmit,
				"Cancel": function() { $(this).dialog("close"); }
			}});
	$("#joinPopup").dialog("open");
}

function joinPopupSubmit(){}
