    $(document).ready(function() {
	$(".close").click(
				function () {
					$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
						$(this).slideUp(400);
					});
					return false;
				}
			);
	}); 

	function popup(mypage, myname, w, h, scroll) {
		var winl = (screen.AvailWidth - w) / 2;
		var wint = (screen.AvailHeight - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
		win = window.open(mypage, myname, winprops)
	}

	function submitConfirm(listForm) {
		listForm.target="_self"; 
		listForm.action="";
		var answer = confirm ("Bu kaydı silmek istediğinize eminmisiniz?") 
			if (answer)
				window.location.href=(listForm);//window.location.href=(listForm);
			else
		false
}

	function openWin(theURL,winName,features) {
		window.open(theURL,winName,features);
}

