function addBookmark() {
    if (document.all)window.external.addfavorite(window.location, window.document.title);
    else window.sidebar.addPanel(window.document.title, window.location, "");
}
function form_cevap(page,param,fnk){
   // alert(param);
    $.ajax({
        url:page,
        type: 'post',
        data: param,
        cache: false,
        dataType: 'script',
        success: function(msg){
            if(msj[0])window.location=window.location;
            else fnk(msj);
        }
    });
}

function modal_ac(page){//alert("ee");
    $('#ModalContent').html("<div id='simlemodal_loader'></div>");
    $('#ModalContent').modal({
        position: [25,"25%"]
    });
    $.ajax({
        url:page,
        type: 'post',
        cache: false,
		  encoding:'ISO-8859-9',
        dataType: 'html',
        success: function(msg){//alert(msg);
            $('#ModalContent').html(msg);
        }
    });
}
function tab_ac(page){alert(page);
	$.ajax({
		url:page,
		type: 'post',
		cache: false,
		encoding:'ISO-8859-9',
		dataType: 'html',
		success: function(msg){alert(msg);
		$('#tab_content212').html(msg);
	}
	});
}

