jQuery(document).ready(function(){
	jQuery("#cf6_field_6").click(function(event){
		if(jQuery("#cf6_field_6").attr('checked')){
			var enquiry = jQuery("#cf6_field_5").val();
			if(enquiry != "0"){
				window.open("http://www.uk-wp.com/uk_sponsor_information/?enquiry=" + enquiry, 'UK Sponsor Information', 'status = 1, height = 400, width = 600, resizable = 1, scrollbars = 1');
			}
			else{
				alert("Please select the reason for your enquiry !!!");
				jQuery("#cf6_field_6").attr('checked', false);
			}
		}
	});
});
