function addHighSlideAttributehtml() {
  var isIE = (document.documentElement.getAttribute('style') == document.documentElement.style);
  var anchors = document.getElementById('content').getElementsByTagName('a');
  for (var i = 0, len = anchors.length; i < len; i++) {
	 if (anchors[i].className == 'hs_html') {
      		if (!anchors[i].getAttribute('onclick')) {
        	isIE ? anchors[i].setAttribute("onclick", new Function("return hs.htmlExpand(this, {outlineType: 'glossy-dark', objectType: 'iframe',width: '800', headingText: 'ここをクリック＆ドラッグで移動', wrapperClassName: 'titlebar' } )")) :
               		anchors[i].setAttribute("onclick","return hs.htmlExpand(this, {outlineType: 'glossy-dark', objectType: 'iframe',width: '800', headingText: 'ここをクリック＆ドラッグで移動', wrapperClassName: 'titlebar' } )");
        	isIE ? anchors[i].setAttribute("onkeypress", new Function("return hs.htmlExpand(this, {outlineType: 'glossy-dark', objectType: 'iframe',width: '800', headingText: 'ここをクリック＆ドラッグで移動', wrapperClassName: 'titlebar' } )")) :
               		anchors[i].setAttribute("onkeypress","return hs.htmlExpand(this, {outlineType: 'glossy-dark', objectType: 'iframe,width: '800', headingText: 'ここをクリック＆ドラッグで移動', wrapperClassName: 'titlebar' } )");
      }
    }
  }
}
