﻿// JScript File

//GENEL FONKSIYONLAR
function f_SessionEnd_GotoLoginPage(mesaj) {
    if (mesaj != null) {
        alert(mesaj);        
    }
    window.location.href = "../login.aspx";
//    window.location.href = "/login.aspx";
}
function OpenPopUpWindow(sURL, iWidth, iHeight) {
    var YeniPencere = window.open(sURL, 'yenipencere', 'resizable=yes,scrollbars=yes,status=no,width=' + iWidth + ' ,height=' + iHeight)
    //window.location.href = sURL;
}
function f_MessageBoxShow_1(mesaj) {
    alert(mesaj);
    return false;
}

function f_Onayla(s) {
    var newstring = new String(s);
    if (confirm(newstring)) {
        return true;
    }
    return false;
}

function Open_Ana_Menu() {
    var height = screen.height;
    var width = screen.width;
    var anamenu = window.open('default.aspx', 'anamenu', 'resizable=yes,scrollbars=yes,status=no,width=' + width + ' ,height=' + height)
    //anamenu.opener = window;
}


//**
function saatgoster() {
    Stamp = new Date();
    var Hours;
    var Minutes;
    var Seconds;
    var Time;
    Hours = Stamp.getHours();
    Minutes = Stamp.getMinutes();
    Seconds = Stamp.getSeconds();
    if (Seconds.length == 0)
        Seconds = "0" + Seconds;
    Time = Stamp.toLocaleTimeString();
    var saatlabel = document.getElementById("lblsaat");
    saatlabel.innerText = Time;
    setTimeout("saatgoster()", 1000);
}

//**
function tarihgoster() {
    Stamp = new Date();
    var Tarih;
    Tarih = Stamp.toLocaleDateString();
    var saatlabel = document.getElementById("lbltarih");
    saatlabel.innerText = Tarih;
}


//**
