function bookmark(){
var title=document.title
var url=document.location.href
if (window.sidebar) window.sidebar.addPanel(title, url,"");
else if( window.opera && window.print ){
	var mbm = document.createElement('a');
	mbm.setAttribute('rel','sidebar');
	mbm.setAttribute('href',url);
	mbm.setAttribute('title',title);
	mbm.click();
	}
else if( document.all ) window.external.AddFavorite( url, title);
}

function imgResize(nID,nMaxWidth)
{
  var objParentID =document.getElementById(nID);
  var objImg =objParentID.getElementsByTagName("img");
  for (i=0;i<objImg.length;i++) {
    nOldWidth =objImg[i].offsetWidth;
		if (nOldWidth>nMaxWidth){
		objImg[i].style.width =nMaxWidth +"px";
		}
	}
}