<!--
var bon;
var boff;
    if (document.images) {
      bon = new Image(); 
      boff = new Image();   
      bon.src = 'images/bullet_on.gif';
      boff.src = 'images/bullet_off.gif';
    }
    function b(bname) {
        if (document.images) {
          document[bname].src = (document[bname].src.indexOf('images/bullet_on.gif') != -1) ? 'images/bullet_off.gif' : 'images/bullet_on.gif';
        }
    }
	function createWindow (url, name, width, height) {
		window.name = 'main';
		tearWin=window.open(url, name, 'personalbar=no,toolbar=no,status=no,scrollbars=no,location=no,resizable=no,menubar=no,width=' + width + ',height=' + height);
	}
//-->

