<!--
function hhSeeMoreWinOpen(smwinname,smtitle,smimg,smwidth,smheight){
  var winWidth = smwidth*1.2;
  var winHeight = smheight*1.2;

  var hhWO = window.open("",smwinname,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + winWidth + ",height=" + winHeight );
  hhWO.focus();
  hhWO.document.write("<html><head><title>" + smtitle + "</title></head>");
  hhWO.document.write("<body bgcolor='#FFFFFF' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'><div align='center'>");
  hhWO.document.write("<img alt='' border='0' src='" + smimg + "' width='" + smwidth + "' height='" + smheight + "'>");
  hhWO.document.write("<br><br><a href='javascript:top.close();'><img src='images/button_close.gif' border='0' alt='CLOSE'>");
  hhWO.document.write("</a></div></body></html>");
  hhWO.document.close();
}

//-->