function email(one, two) {
	document.write('<a href="mailto&#58;' + one + '&#64;' + two + '">' + one + '&#64;' + two + '</A>')
}
function showHide (expandID) {
	jQuery('#'+expandID+'_hide').hide()
	jQuery('#'+expandID+'_show').show()
	jQuery('#'+expandID+'_show2').show()
	jQuery('#'+expandID+'_focus').focus()
}
function hideShow (expandID) {
	jQuery('#'+expandID+'_show').hide()
	jQuery('#'+expandID+'_show2').hide()
	jQuery('#'+expandID+'_hide').show()
}
function phone(one, two, three) {
	document.write('(' + one + ') ' + two + '-' + three)
}
