/****************************************************************************************************/
/* 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>');
	}
}