
<!--
with (content)
{

divs[0] = new ScrDiv('contentOuter', 	  'page.winW()/2-110', 	'page.winH()/2-137', 	'450', '274', 2);

divs[1] = new ScrDiv('contentBar', 	  'page.winW()/2+358',   'page.winH()/2-127', 	'11', 	'250', 2);
divs[2] = new ScrDiv('contentThumb', 	  'page.winW()/2+358',   '', 			'11', 	'',    1);

divs[3] = new ScrDiv('contentUpArrows',   'page.winW()/2+358',   'page.winH()/2-140', 	'11', 	'13', 2);
divs[4] = new ScrDiv('contentDownArrows', 'page.winW()/2+358',   'page.winH()/2+121', 	'11', 	'13', 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;
}
//-->