function checkForm(event){
	if (event.keyCode == 13)submitForm();
}
function submitForm(){
	var thisForm =document.getElementById? document.getElementById("clientform") : document.all.clientform;
	thisForm.submit();
}
function showEmail(divID,mailID){
	document.getElementById(divID).innerHTML = 'E: <a href="mailto:' + mailID +'@propeler.net">'+ mailID +'@propeler.net</a>';
}
