
	// Do not edit the following function calls:

	
	// Call your functions here:
		


// Do not edit the following functions:

function disableSubmit() {
	$('input[@type=submit]').click(function(){ $(this).attr('disabled',true); });
}

// Your functions go here


$(document).ready(function(){
	/* opens pop up window for checklist page */
	$('.legula-demo').bind('click', function(ev) {
	 window.open(this.href,'help','top=300,left=50,height=600,width=800,status=yes,toolbar=no,menubar=no,location=no');
	 return false;
	});
});