////////////////////////////////////////////////////////////////////////////
// cat.js : catalog specific functions : v2.1 : (C)2003 YBS               //
////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////
// setProdFormActions()
//
// iterates through forms on current page and puts ScriptURL into each
// (prod) form's action attribute.
//

////////////////////////////////////////////////////////////////////////////
function setProdFormActions() {
  var fn='';
  for (var i=0; i<document.forms.length; i++ ) {
    fn = document.forms[i].name;
    if (fn.slice(0,1) == 'p') {
      document.forms[i].action = ScriptURL;
    }
  }
}

////////////////////////////////////////////////////////////////////////////
var fw = false;
function insertFWProduct() {
  document.write('<br />');
  document.write('<div id="fw">');
  document.write('  <table border="0" cellpadding="5" cellspacing="0">');
  document.write('    <tr>');
  document.write('      <td rowspan="4">');
  document.write('        <img width="100" height="100" src="images/SIAB.png" alt="Shop In A Book" />');
  document.write('      </td>');
  document.write('      <td>');
  document.write('        <strong>SHOP IN A BOOK&reg; by YBS</strong>');
  document.write('      </td>');
  document.write('    </tr>');
  document.write('    <tr>');
  document.write('      <td>');
  document.write('        <em>Cool store building software!</em>');
  document.write('      </td>');
  document.write('    </tr>');
  document.write('    <tr>');
  document.write('      <td>');
  document.write('        <a href="http://www.yourbusinesssoftware.com/bin/cart.pl?OP=AI&item_id=SIABF" target="_new">Download Freeware v1.5</a>');
  document.write('      </td>');
  document.write('    </tr>');
  document.write('    <tr>');
  document.write('      <td>');
  document.write('        <a href="http://www.yourbusinesssoftware.com/bin/cart.pl?OP=AI&item_id=SIAB" target="_new">Purchase Commercial v1.5 -  Only $49.99!</a>');
  document.write('      </td>');
  document.write('    </tr>');
  document.write('  </table>');
  document.write('</div>');
  document.write('<br />');
}

////////////////////////////////////////////////////////////////////////////
function toggleSubItems(handle,divid) {
  var handleImg=handle.childNodes[0];
  var subItemNode=document.getElementById(divid);
  if (subItemNode.style.display == 'none') {
    handleImg.src='minus.gif';
    subItemNode.style.display='block';
  } else {
    handleImg.src='plus.gif';
    subItemNode.style.display='none';
  }
} 