//var site_url = 'http://127.0.0.1/_tickets/531/freestuff';

var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttp = false;
  }
}
@end @*/

if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
  xmlHttp = new XMLHttpRequest();
}		

function call(url, onready) {
  xmlHttp.open("GET", url, true);
  xmlHttp.onreadystatechange = onready;
  xmlHttp.send(null);
}		
////////////////////////////////////////////////////////////////
function callcheckresult(filename)
{
	if (obj = document.getElementById('submitbtn')) obj.disabled = true;
	if (section = document.getElementById("info")) section.innerHTML = '<b>Please, wait while <br>form will be processed...<b>';
//	var url = site_url+'/click.php?name='+filename;
	var url = 'click.php?name='+filename;
	call(url, fillformresult);
}
////////////////////////////////////////////////////////////////
function fillformresult()
{
	if (xmlHttp.readyState == 4) {
		var response = xmlHttp.responseText;
		if (section = document.getElementById("info"))	section.innerHTML = response;
		if (obj = document.getElementById('GRSubscribeForm')) obj.submit(); 
		return response;
	} else return false;
}
////////////////////////////////////////////////////////////////
