// nextitem
// $Revision:  $
// $Date: __/__/__  __:__ $
var numItems = 11;
var actItem = 1;	

nvIE =  (navigator.appName == "Microsoft Internet Explorer");

	function nextItem() {
		if (actItem < numItems) {
			actItem++;	

			target = document.frames["Item_list"];
			if (target.scrollBy)
				for (i=0; i<310; i++) {
	    			target.scrollBy(1, 0);
				}
		}
					
	}
	
	function prevItem () {
		target = document.frames["Item_list"];	
  		if (target.scrollBy) {
			if (actItem > 1)
				actItem--;
	
			for (i=0; i<310; i++) {
    			target.scrollBy(-1, 0);
			}	
		}
					
	}
	



