<!-- Author Roger Blask  | McCullough Creative Group | 12/07/2004 -->
	var bname = navigator.appName;
	var bversion = parseFloat(navigator.appVersion); 
	var roll = false;
	var brwsr_type;
	
	if(document.getElementById){brwsr_type = 'DOM'}
	else if(document.all){brwsr_type = 'IE4'}
	else if(document.layers){brwsr_type = 'NS4'}
	else {brwsr_type = false}

	if ((bname == "Netscape" && bversion >= 3.0) || (bname == "Microsoft Internet Explorer" && bversion >= 3.0)) {roll = 'true'; }

	function msover1(img1,ref1) { 
		if (roll == 'true'){document.images[img1].src = ref1}
	}
	function msout1(img1,ref1) { 
		if (roll == 'true'){ document.images[img1].src = ref1} 
	}

	function msover2(img1,ref1,img2,ref2) {
		if (roll == 'true'){document.images[img1].src = ref1; document.images[img2].src = ref2}
	}
	function msout2(img1,ref1,img2,ref2) {
		if (roll == 'true') { document.images[img1].src = ref1; document.images[img2].src = ref2} 
	}

	function msover3(img1,ref1,img2,ref2,img3,ref3) {
		if (roll == 'true'){ document.images[img1].src = ref1; document.images[img2].src = ref2; document.images[img3].src = ref3} 
	}
	function msout3(img1,ref1,img2,ref2,img3,ref3) {
		if (roll == 'true'){document.images[img1].src = ref1; document.images[img2].src = ref2; document.images[img3].src = ref3}
	}


	function positionPage(when)
	{
		if (xGetElementById('HeaderDiv') && xGetElementById('HeaderTable') && xGetElementById('ContentDiv') && xGetElementById('ContentTable') && xGetElementById('FooterDiv') && xGetElementById('FooterTable'))
		{
			xHeaderArea = xHeight('HeaderTable','');
			xContentArea = xHeight('ContentTable','');
			xFooterArea = xHeight('FooterTable','');
			xContentAvailable = xClientHeight() - (xHeaderArea + xFooterArea);
	
			document.body.scroll='no';
			if (((xHeaderArea + xFooterArea + xContentArea) <= 501) && ((xHeaderArea + xFooterArea + xContentArea) < xClientHeight()) && xClientHeight() > 510)
			{
				xHeight('ContentDiv',(501 - (xHeaderArea + xFooterArea)));
				xOverflow('ContentDiv','');
			}
			else if (((xHeaderArea + xFooterArea + xContentArea) > xClientHeight()))
			{
				xOverflow('ContentDiv','auto');
				xWidth('ContentTable',xWidth('ContentTable',xWidth('ContentDiv')-17));
				xHeight('ContentDiv',xContentAvailable);
			}
			else 
			{
				xHeight('ContentDiv',xHeight('ContentTable',''));
				xOverflow('ContentDiv','');
			}
		}
		
		document.body.scroll='auto';
		
	}
