function hs(itemID, iState) {
	htmlItem = document.getElementById(itemID);
	if (htmlItem) {
		if (iState == 0) {  // hide
			htmlItem.style.display = 'none';
		}
		else {  // show
			htmlItem.style.display = '';
		}
	}
}

defaultStep=3
step=defaultStep
function scrollDivRight(id){
document.getElementById(id).scrollLeft+=step
timerRight=setTimeout("scrollDivRight('"+id+"')",10)
}

function scrollDivLeft(id){
document.getElementById(id).scrollLeft-=step
timerLeft=setTimeout("scrollDivLeft('"+id+"')",10)
}


function myPopup(href) {
	window.open(href, "myWindow", "status = 0, height = 300, width = 500, top = 400, left = 300")
}
