// JavaScript Document
function addToFavorite(favTitle){
  if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
    window.external.AddFavorite(location.href, unescape(favTitle));
  }
}
function onImgErrorSmall(source)
	{
	source.src = "/images/no-image-100px.gif";
	// disable onerror to prevent endless loop
	source.onerror = "";
	return true;
	}
function onImgErrorLarge(source)
	{
	source.src = "/images/no-image-200px.gif";
	// disable onerror to prevent endless loop
	source.onerror = "";
	return true;
	}