// Show or hide the contact div
function showContactFormFree(show){
	// If the div is to be shown
	if(show) {
		// Set the visibility to visible
		// document.getElementById('dvContactForm').style.visibility = 'visible';
		openContactFormFree();
	} else {
		// Set the visibility to hidden
		// document.getElementById('dvContactForm').style.visibility = 'hidden';
		window.close();
	}
}

/* Open the contact form */
function openContactFormFree() {
	var url = 'free-demo.aspx';
	var wth = 300;
	var hht = 400;
	var lft = 432;
	var top = 520;
  contactWindow = window.open(url, "newTarget","width="+wth+",height="+hht+",location=no,toolbar=no,scrollbars=no,application=no,status=no,menubar=no");
  if (contactWindow.opener == null) contactWindow.opener = window;
}
