function addBookmark(title, url) {
       if (window.sidebar) { // firefox
             window.sidebar.addPanel(title, url,"");
       } else if( document.all ) { //MSIE
               window.external.AddFavorite( url, title);
       } else {
              alert("Sorry, your browser doesn't support this");
       }
}


function errorImg(i) {
	//There was an error loading this image
	trImage = new Image();
	trImage.src = '/js/errorImage.cfm?id=' + i;
	noImg(i);
}

function noImg(i) {
	trImage = new Image();
	trImage.src = '/article.cfm?id=' + i;	
}


