function R2_tinyPopUp(file,intWidth,intHeight,name) {
	if(navigator.userAgent.toLowerCase().indexOf('msie')>0 & navigator.userAgent.toLowerCase().indexOf('mac')>0) {
	  intHeight-=17;
	  intWidth-=17;
  }
	strParams='width='+intWidth+',height='+intHeight+',left=20,top=10';
  poped=window.open(file,name,strParams);

  poped.focus();
  return false;
}
