var ID;

function ScrollRight(){

		// is_ie is set in main.js
		if(is_moz) {
			frm = document.getElementById('products').contentDocument.defaultView;
		} else {
			frm = top.frames['products'];
		}


		frm.scrollBy(6,0);
		ID = setTimeout('ScrollRight()','21');
	}

	// Scroll the iframe on the left
	function ScrollLeft(){

		// is_ie is set in main.js
		if(is_moz) {
			frm = document.getElementById('products').contentDocument.defaultView;
		} else {
			frm = top.frames['products'];
		}

		frm.scrollBy(-6,0);
		ID = setTimeout('ScrollLeft()','21');
	}

	// Clear the scroll
	function StopScroll(){
		clearTimeout(ID);
	}

	function Hand(){
		if (is_moz){
			document.body.style.cursor = 'pointer';
		} else {
			document.body.style.cursor = 'hand';
		}
	}

	function Normal(){
		clearTimeout(ID);
		if (is_moz){
			document.body.style.cursor = '';
		} else {
			document.body.style.cursor = '';
		}
	}