/* ---------------------------- */
/* XMLHTTPRequest Enable */
/* ---------------------------- */
function createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
request_type = new ActiveXObject("Microsoft.XMLHTTP");
}else{
request_type = new XMLHttpRequest();
}
return request_type;
}

var http = createObject();

/* -------------------------- */
/* szavazo kod */
/* -------------------------- */
var nocache = 0;
function szavkod() {
nocache = Math.random();

// Pass the login variables like URL variable
http.open('get', 'codegen.php?nocache='+nocache);
http.onreadystatechange = Reply_szavaz;
http.send(null);
}
function Reply_szavaz() {
if(http.readyState == 4){
var respon = http.responseText;
if(respon == "fail"){
alert('Hiba próbálja újra');
}
else {
alert('A KóD: '+respon);
}
}
}



