$().ready(function() {
	$("#frm").validate({
		rules: {
			fldname: "required", 
			fldemail:{
				required: true, 
				email: true
			}, 
			fldtelephone: "required", 
			fldtypesurgery: "required", 
			flddescription: "required", 
			fldcallbacktime: "required", 
			fldcntcaptcha: "required"
		},
		messages: {
			fldname: "Type your First Name.", 
			fldemail: "Type your E-mail Address(valid).", 
			fldtelephone: "Type your Telephone Number.", 
			flddescription: "Type your Description.", 
			fldcallbacktime: "Select an option.",
			fldcntcaptcha: "Type the text of image above."
		}
	});
});

function janela(www,h,w)
{
	var height = window.screen.height - 160;
	var width = window.screen.width;
	var top = (height- h)/2;
	var left = (width - w)/2;
	window.open(www,"flash","top=" + top + ",left="+ left +",width="+w+",height="+h+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,scrolling=yes,resizable=no")
}
