﻿function SayiKontrol(e) {
    olay = document.all ? window.event : e;
    tus = document.all ? olay.keyCode : olay.which;
    if (tus < 48 || tus > 57) {
        if (document.all) { olay.returnValue = false; } else { olay.preventDefault(); }
    }
}

function Mesaj() {
    alert("mes");
}