
<!--
with (content)
{

divs[0] = new ScrDiv('contentOuter', 	  'page.winW()/2-450', 	'page.winH()/2-183', 	'670', '358', 2);

divs[1] = new ScrDiv('contentBar', 	  'page.winW()/2+250',   'page.winH()/2-170', 	'1', 	'335', 2);
divs[2] = new ScrDiv('contentThumb', 	  'page.winW()/2+249',   '', 			'3', 	'',    1);

divs[3] = new ScrDiv('contentUpArrows',   'page.winW()/2+245',   'page.winH()/2-190', 	'12', 	'12', 2);
divs[4] = new ScrDiv('contentDownArrows', 'page.winW()/2+245',   'page.winH()/2+172', 	'12', 	'12', 2);

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;
}
//-->