function subConFrm(frm) { 
	/*
	
	Anything required? 
	If some data are required, then we need to do some validation here. Otherwise
	just ask the question (see below) and fire away. 
	
	*/ 
	var res = confirm('Do you want to submit this form? This cannot be undone. Do you want to submit this form?'); 
	if (res) { 
		if (frm.name.value == "" || frm.citytown.value == "" || frm.phone.value == "" || frm.email.value == "") { 
			alert('Not all required info was entered. Please enter your name, city/town, address, phone and email, then click the submit button'); 
			return false; 
		} 
		return true; 
	} 
	return false; 
} 

