function popUp(strURL, windowname, intHeight, intWidth, strScrollbar){ var strOptions = "toolbar=no"; strOptions += ",local=no"; strOptions += ",menubar=no"; strOptions += ",status=no"; strOptions += ",scrollbars=" + strScrollbar; strOptions += ",resizable=yes"; strOptions += ",height=" + intHeight; strOptions += ",width=" + intWidth; //StrUrl="'" + strUrl + "'" //alert(strOptions); mywindow=window.open(strURL, windowname, strOptions); } function clickCategory(CatIDStr){ var txtObj = document.all("T_" + CatIDStr); var imgObj = document.all("I_" + CatIDStr); if (txtObj.style.display == 'none'){ txtObj.style.display = ''; imgObj.src = '/wood-en-man/images/icon_minus.gif'; } else { txtObj.style.display = 'none'; imgObj.src = '/wood-en-man/images/icon_plus.gif'; } window.event.cancelBubble=true; } function openCategory(CatIDStr){ var txtObj = document.all("T_" + CatIDStr); var imgObj = document.all("I_" + CatIDStr); txtObj.style.display = ''; imgObj.src = '/wood-en-man/images/icon_minus.gif'; window.event.cancelBubble=true; } function showpost(intPost) { popUp('/wood-en-man/html/windowdiscussion.asp?action=showpost&post='+ intPost,'post',250,500,'yes'); } function accept(str_question) { msg=str_question if (confirm(msg)) { return true; } else { return false; } }