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

function loadRequest(url,position) {
	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 ) {
		document.getElementById(position).innerHTML = xhr_object.responseText;
		}
	}
	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>');
	}
}