$(document).ready(function(){
	// This code executes after domready 
	$("#requestForm").validate(); 
	$("a.goprint").click(function() {
		window.print();
		return false;
	}); 
	$("a.goprint").click(); 
 // end code
});

