var content = new DHTMLScroller('content', '');with (content) { 	divs[0] = new ScrDiv('contentOuter', '0', '0', '330', '350', 2); 	divs[1] = new ScrDiv('contentBar', '354', '15', '1', '320', 1); 	divs[2] = new ScrDiv('contentThumb', '352', '', '5', '', 1); 	divs[3] = new ScrDiv('contentUpArrows', '349', '0', '11', '11', 1); 	divs[4] = new ScrDiv('contentDownArrows', '349', '339', '11', '11', 1);  	stick = 0.25; 	page.minW = 800; 	page.minH = 600; 	onload = function() { 		var lm = getSty('loadMessage'); if (lm) lm.visibility = 'hidden'; 	}}	document.onmousewheel = function(evt) { 	evt=evt?evt:window.event; 	if (evt.wheelDelta) content.scrollBy(evt.wheelDelta / -3);	return false;}