function contact_support_chk(){

if(document.frm.contactname.value==""){
	alert("Your Name");
	document.frm.contactname.focus()
	return false;
}

if(document.frm.hero_name.value==""){
	alert("Name(s) of Your Health Care Hero(es)");
	document.frm.hero_name.focus()
	return false;
}

if(document.frm.position.value==""){
	alert("Hero's Position or Title (if known)");
	document.frm.position.focus()
	return false;
}
if(document.frm.dep_name.value==""){
	alert("Department, Floor or Facility");
	document.frm.dep_name.focus()
	return false;
}
if(document.frm.hero_story.value==""){
	alert("Your Hero Story");
	document.frm.hero_story.focus()
	return false;
}
if(document.frm.email_add.value==""){
	alert("Your email address");
	document.frm.email_add.focus()
	return false;
}
	if( (document.frm.email_add.value.indexOf("@")==-1) || (document.frm.email_add.value.length==document.frm.email_add.value.indexOf("@")+1) || (document.frm.email_add.value.indexOf(".")==-1)|| (document.frm.email_add.value.length==document.frm.email_add.value.indexOf(".")+1) || (document.frm.email_add.value.indexOf(".",2)==document.frm.email_add.value.indexOf("@")+1) || (document.frm.email_add.value.indexOf(".",2)==document.frm.email_add.value.indexOf("@")-1) || (document.frm.email_add.value.indexOf(".")==0) || (document.frm.email_add.value.length==document.frm.email_add.value.lastIndexOf(".")+1) || (document.frm.email_add.value.indexOf("@")==0) || (document.frm.email_add.value.lastIndexOf(".") < document.frm.email_add.value.indexOf("@")+2) ){
		alert("Please Enter Correct Your email address");
		document.frm.email.focus();
		return false;

	}
}
