<!--

        var generalStat      = 0;
        var businessStat     = 0;
        var marketStat 		 = 0;
        var contactStat      = 0;
	var Current          = 'None';

        if (document.images)
          {
             var Ngeneral = new Image()
             Ngeneral.src = "www/_img/menu/general_off.gif";
             var Ageneral = new Image();
             Ageneral.src = "www/_img/menu/general_on.gif";

             var Nbusiness = new Image()
             Nbusiness.src = "www/_img/menu/business_off.gif";
             var Abusiness = new Image();
             Abusiness.src = "www/_img/menu/business_on.gif";

             var Nmarket = new Image()
             Nmarket.src = "www/_img/menu/market_off.gif";
             var Amarket = new Image();
             Amarket.src = "www/_img/menu/market_on.gif";

             var Ncontact = new Image()
             Ncontact.src = "www/_img/menu/contact_off.gif";
             var Acontact = new Image();
             Acontact.src = "www/_img/menu/contact_on.gif";
          }

                function Act(imgName)
                {
                   var TempStat = eval(imgName + 'Stat');
                   if (document.images)
                   {
                      document.images[imgName].src = eval('A' + imgName + '.src');
                   }
                }

                function DeAct(imgName)
                {
                   var TempStat = eval(imgName + 'Stat');
                   if (document.images)                   
		   		   {
                      document.images[imgName].src = eval('N' + imgName + '.src');
                   }
                }

                function Reset()
                {
          if (Current != 'None')
          {
             generalStat      = 0;
             businessStat     = 0;
             marketStat = 0;
	     contactStat      = 0;

             DeAct('general');
             DeAct('business');
             DeAct('general');
             DeAct('contact');


             Current = 'None';
             }
           }

           function ChangeImg(imgName)
           {
          	 parent.contents.ResetContents();
             generalStat      = 0;
             businessStat     = 0;
             marketStat       = 0;
	     contactStat      = 0;

             DeAct('general');
             DeAct('business');
             DeAct('market');
             DeAct('contact');

             Act(imgName)
             eval(imgName + 'Stat = 1');
             Current = imgName;
           }
//-->