/*
This script is to fix the display/location of the popup created by 
addthis_widgety.js in IE6.

Include: http://s7.addthis.com/js/152/addthis_widget.js
*/

//document.write("<script language='javascript' src='http://s7.addthis.com/js/152/addthis_widget.js'></script>");
var addthis_pub = "YOUR-ACCOUNT-ID";

function adjustPopupPosition(attempt) {
	var popup = document.getElementById("at15s");  //popup created by addthis_widget.js
	
	if (popup) {
		var intPopupLeft = parseInt(popup.style.left.substring(0,popup.style.left.indexOf("px")));
		if (intPopupLeft < 0) {
			popup.style.left = (intPopupLeft + 800) + "px";
		}
	}
	else if (!attempt){
		setTimeout('adjustPopupPosition(2)',300);
	}
}

function shell_addthis_open(obj) {
	var popAddThis = addthis_open(obj, '', '[URL]', '[TITLE]')
	//If IE 6 then move popup
	if (navigator.appName.indexOf("Microsoft") > -1 && navigator.appVersion.indexOf("MSIE 6") > -1) {
		adjustPopupPosition();
	}
	
	return popAddThis;
}

loadJavaScript("http://s7.addthis.com/js/152/addthis_widget.js","socialBookmarkingWidget");