<!-- // 

function menuswitch(objElement, button_state)
   {
   switch (button_state)
      {
      case 'off':
      class_content=objElement.parentNode.className;
      objElement.parentNode.className=class_content.replace(/ menuitem_over/, '');
      break;
      case 'on':
      objElement.parentNode.className+=' menuitem_over';
      break;
      };
   };

function imagepop(Image,Width,Height)
	{
	Attributes='scrollbars=no,resizable=no,marginheight=0,marginweight=0,toolbar=no,width='+Width+',height='+Height;
   newwindow=window.open(Image, null, Attributes);
   newwindow.focus(); 
	};	

//  -->