﻿function GetKupons() {
    MyAjaxClass.SInfo(GetKupons_callback, null, null, null, onTimeoutGetKupons, null);
}
function onTimeoutGetKupons() {
    return true;
}
function GetKupons_callback(r) {
    if (r == null) return;
    if (r.error != null) {
        alert(r.error.Message);
        return;
    }
    var res = r.value;
    KT_Result_Table(res.RShowInfo);
}
function KT_Result_Table(res) {
    yazi = '';
    yazi += '<p style="text-align:center;"><strong>Duyurular</strong></p>';
    yazi += '<marquee behavior="scroll" direction="up" scrollamount="1" height="113" width="250" onMouseOver="this.stop()" onMouseOut="this.start()">';
    if (res != null) {
        for (var i = 0; i < res.length; i++) {
            yazi += '<a href="javascript:spop();"><p><strong>' + res[i].Tarih + '</strong></p>';
            yazi += '<p>' + res[i].Message + '</p></a>';
            yazi += '</br>';
        }
    }
    yazi += '</marquee>';
    document.getElementById("header_info").innerHTML = yazi;
}
function spop() {
    var vfile = 'Show_Duyuru.aspx';
    newWindow = window.open(vfile, "Duyuru", "height=500,width=350,scrollbars=yes,status=no ,toolbar=no,hotkeys=no,locationbar=no,fullscreen=0,resizable=0");
    newWindow.moveTo(screen.availWidth / 2 - 400, screen.availHeight / 2 - 250);
    newWindow.focus(); 
} 

 


