function Ajax(){
	var xmlhttp=false;
 	try {
 		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 	} catch (e) {
 		try {
 			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 		} catch (E) {
 			xmlhttp = false;
 		}
  	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}
function inform(uid){
	var ajaxuser=Ajax();
	ajaxuser.open("GET",'actions.php?action=inform&uid='+uid, true);
	ajaxuser.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajaxuser.send('');
	ajaxuser.onreadystatechange=function() {
		if(ajaxuser.readyState==4) {
			alert('Thanks\nSoon you will be informed when credit card payment is enabled.\n\nIAG 2009 - Buenos Aires - Argentina.');
		}
	}
}

function member(uid){
	var ajaxuser=Ajax();
	ajaxuser.open("GET",'actions.php?action=member&uid='+uid, true);
	ajaxuser.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajaxuser.send('');
	ajaxuser.onreadystatechange=function() {
		if(ajaxuser.readyState==4) {
			alert('We will check our member list and you will be noticed soon.\n\nIAG 2009 - Buenos Aires - Argentina.');
			window.location='index.php';
		}
	}
}