function vip_send(){
	var client = document.getElementById('vipClient').value;
	$("#loading").show("fast");
	$.post("Scripts/vip/getUser.php","client="+client,function(data){
			$("#loading").hide("fast");
			document.getElementById('vip').innerHTML = data;
			$("#vip").show("slow");
			$("#vipInput").hide("slow");
		})
	return false;
}
function vip_back(){
			$("#vip").hide("slow");
			document.getElementById('vipClient').value = '';
			$("#vipInput").show("slow");		
}
function sortear(cid){
	document.getElementById('sorteo').innerHTML = 'Sorteando... <img src="images/sorteando.gif>'
	$.post("Scripts/vip/sorteo.php","client="+cid,function(data){
			document.getElementById('sorteo').innerHTML = data;												   
	})
}