var urlWeb = 'http://www.visitarmarruecos.com';
/**
 * Funcion para crear un nuevo objeto xmlhttp
 */
function newAJAX(){
	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 vote( vote, id ){
		container = document.getElementById( 'votes' );

		ajax=newAJAX();
		
		ajax.open('GET', urlWeb+'/includes/votes.php?id='+id+'&vote='+vote, true);
		document.getElementById('stars').innerHTML = '<img src="http://www.visitarmarruecos.com/templates/default/images/loading.gif" border="0" />';
		ajax.onreadystatechange=function() {
				if (ajax.readyState==4) {
						container.innerHTML = ajax.responseText;
	 			}
			}
			ajax.send( null );
}
