function girisyap(){

var EMAIL = document.getElementById('EMAIL').value;
var PAROLA = document.getElementById('PAROLA').value;

// alinan verileri isleme koyalim scorLex..
var sc = "EMAIL="+fc_(EMAIL)+"&PAROLA="+fc_(PAROLA);
JXP(1, "giris_sonuc", "kontrol.asp", sc);
}

function loginx() {
if(ajax.readyState == 4){ 
var response = ajax.responseText;
if(response == 0){
// Eğer Girilen Bilgiler Doğruysa Yönlendir anasayfaya 'Code By KaLinKa'
window.location="default.asp";
} else {
document.getElementById('giris_sonuc').innerHTML = 'HATA:'+response;
}
}
}

