jQuery(document).ready(function() { 
});

function CreateAction() {
	if (document.WEB2LEAD.SELECTWorkFlow == null) {
		document.WEB2LEAD.action = "https://crm.kahunaworld.com/crm/eware.dll/SubmitLead?RuleID=";
	} else {
		document.WEB2LEAD.action = "https://crm.kahunaworld.com/crm/eware.dll/SubmitLead?RuleID=" + document.WEB2LEAD.SELECTWorkFlow.options[document.WEB2LEAD.SELECTWorkFlow.selectedIndex].value;
		return true;
	}
}
function setVisibility(showID,hideID) {
//     add here form validation checks to make sure required data is at least in proper format before allowing move to next button
//		http://www.javascript-coder.com/html-form/javascript-form-validation.phtml#download	
//		http://www.javascript-coder.com/html-form/form-validation.phtml
		document.getElementById(hideID).style.display = 'none';
		document.getElementById(showID).style.display = 'inline';
}
