/****************************************************************************************************/
/* AJAX */ 
/****************************************************************************************************/

function loadRequest(url, positionArray) {
	var xhr_object = null;
	if (window.XMLHttpRequest) {
		xhr_object = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		xhr_object = new ActiveXObject('Microsoft.XMLHTTP' );
	}
	xhr_object.open('GET', url, true);
	xhr_object.onreadystatechange = function(){
		if ( xhr_object.readyState == 4 ) {
			
			var htmlArray = eval(xhr_object.responseText);
			for (i = 0; i < htmlArray.length; i++) {
				$(positionArray[i]).innerHTML = htmlArray[i];
			}
		}
	}
	xhr_object.send(null);
}

/****************************************************************************************************/
/* BOOKMARK */ 
/****************************************************************************************************/

function showBookmarkButton() {
	if (/msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent)) {
		document.write('<a href="javascript:window.external.AddFavorite(document.location.href, document.title);" class="favorite" title="Add Doctorfou.com to favorites">ADD TO FAVORITES</a>');
	}
}

/****************************************************************************************************/
/* SHARING GAME LINKS */ 
/****************************************************************************************************/

function shareFouFightersFacebook() {
	window.open('http://www.facebook.com/share.php?u=http://www.foufighters.com','Facebook Share','toolbar=0,width=500,height=380');
}

function shareFouFightersTwitter(fighterName) {
	window.open("https://twitter.com/share?original_referer=http%3A%2F%2Fwww.foufighters.com%2Fhq&source=tweetbutton&text=%23Join%20me%20and%20play%20Fou%20Fighters!%20Be%20a%20disciple%20of%20"+fighterName+".&url=http%3A%2F%2Fwww.foufighters.com",'Facebook Share','toolbar=0,width=500,height=350');
}
