//Methods of this file relie on jquery.js being available and loaded

function show(el){
	document.getElementById(el).style.display = 'block';
}

function hide(el){
	document.getElementById(el).style.display = 'none';
}

function submit(frm){
	if (frm == 'contactForm' && _CF_checkcontactForm(document.forms[frm])) 
		document.forms[frm].submit();
	
	if (frm == 'webinarForm' && _CF_checkwebinarForm(document.forms[frm])) 
		document.forms[frm].submit();
		
	if (frm == 'demoForm' && _CF_checkdemoForm(document.forms[frm])) 
		document.forms[frm].submit();
}