// ###   R O L L I N G   ###
function rolling (name, image)
  {
     document.images[name].src = image;
  }


// ###   P O P U P   ###
function popUp (page, name, width, height, scrollbars, resizable)
  {
     window.open (page, name, 'status = yes, menubar = yes, width = ' + width + ', height = ' + height + ', scrollbars = ' + scrollbars + ', resizable = ' + resizable);
  }
  
  
function PopupRestricted (Page, Name, Width, Height, Scrollbars, Resizable) {
	window.open (Page, Name, 'status = yes, menubar = no, width = ' + Width + ', height = ' + Height + ', scrollbars = ' + Scrollbars + ', resizable = ' + Resizable);
}