$(document).ready(function() {
	$("#anketoyla").click( function() {
		$.post("anket.asp", { anket_id: $(".style12").attr("id") , cevap: $(".radiolar:checked").attr("value") }, function(){
		});
		window.open('anket_goster.asp','popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=230,height=115,framemargin=0 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0');
	});
});