<!--
    pn = new Image();
    pn.src = "images/paw_n.gif";
    py = new Image();
    py.src = "images/paw_y.gif";

    function cny ( PName, TName ) {
      if  ( document.images ) {
      	window.document.getElementById(PName).src = py.src;
    	window.document.getElementById(TName).style.color = "#990000";
      }
    }

    function cnn ( PName, TName ) {
      if  ( document.images ) {
      	window.document.getElementById(PName).src = pn.src;
    	window.document.getElementById(TName).style.color = "#ffffff";
      }
    }

//-->

