<!-- hide




function checkfields(){

//if ((document.form_proc.form_lname.value) &&  (document.form_proc.form_phone.value) && (document.form_proc.form_speakup.value)) {

// document.form_proc.submit();

//} else {

text = 'Please Include ';

	
   if (document.forms[2].form_lname.value == '')  {
    	text = text + 'your Last Name, ';
		}
   if (document.form_proc.form_phone.value == '')  {
   	text = text + 'your Phone Number, ';
		}
    if (document.form_proc.form_speakup.value == '')  {
		text = text + 'your Suggestions. ';
		}

alert(text);

//}

}

function checkfields_meeting(){

if ((document.form_proc_meeting.form_contactman.value) && (document.form_proc_meeting.form_email.value) &&  (document.form_proc_meeting.form_phone.value)) {

 document.form_proc_meeting.submit();

} else {

text = 'Please Provide: ';

	if (document.form_proc_meeting.form_contactman.value == '') { 
		text = text + 'Contact Person Name, ';
		}
    if (document.form_proc_meeting.form_email.value == '')  {
    	text = text + ' E-Mail, ';
		}
    if (document.form_proc_meeting.form_phone.value == '')  {
    	text = text + ' Phone Number. ';
		}


alert(text);

}

}

function checkfields_event(){

if ((document.form_proc_speaker.form_contactman.value) && (document.form_proc_speaker.form_email.value) &&  (document.form_proc_speaker.form_phone.value)) {

 document.form_proc_speaker.submit();

} else {

text = 'Please Provide: ';

	if (document.form_proc_speaker.form_contactman.value == '') { 
		text = text + 'Contact Person Name, ';
		}
    if (document.form_proc_speaker.form_email.value == '')  {
    	text = text + ' E-Mail, ';
		}
    if (document.form_proc_speaker.form_phone.value == '')  {
    	text = text + ' Phone Number. ';
		}


alert(text);

}

}


//-->