function roll(state,imagename){ 
	document.images[imagename].src="images/"+imagename+"_"+state+".gif"; 
}
function responseSelect(){
	document.contactForm.origin.value='active';
}
function sef(domain,name){
	parent.location='m'+'ai'+'lto:'+name+'@'+domain;
}
function checkContact(){
	if(document.contactForm.realname.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Name.');
		document.contactForm.realname.focus();
		return false;
	}
	if(document.contactForm.email.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Email.');
		document.contactForm.email.focus();
		return false;
	}
	if(document.contactForm.comments.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Email.');
		document.contactForm.comments.focus();
		return false;
	}
	if(document.contactForm.origin.value=='') { 
		alert('Some required information was missing from the form.\n Please select a Response Option.');
		document.contactForm.response.focus();
		return false;
	}
	document.contactForm.submit();
}