<!--//scriptmonkey: Sark Mucks//eep eep!function stopError()	{		return true;	}		window.onerror = stopError;	var ns4 = (document.layers)? true:false;	var ie4 = (document.all && !document.getElementById) ? true:false;	var ie5 = (document.all && document.getElementById) ? true:false;	var ns6 = (!document.all && document.getElementById) ? true:false;	function preload(imgObj, imgSrc)  		{			 		if (ns4 || ie4 || ie5 || ns6)  			{ 				eval(imgObj + " = new Image()"); 				eval(imgObj + '.src = "' + imgSrc + '"'); 			} 		}function rollover(layer,imgName,imgObj) {				if (ns4) 			{						eval('document.'+layer+'.document.images["'+imgName+'"].src = ' +imgObj+'.src');			}		else document.images[imgName].src = eval (imgObj+".src");			}if (document.layers) 	{    	widthCheck = window.innerWidth;        heightCheck = window.innerHeight;        window.onResize = resizeFix;    }    function resizeFix() 	{          if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)          document.location.href = document.location.href    }function initScrolling(){		//establish of units are to be appended to any position properties	//if (ns4) units = "";	//else units = "px";	//initializes DIV layer for scrolling	if (ns4)        		{       							targetScroll = eval ("document." + scroll_clip +".document." + scroll_div);				conScroll = eval ("document." + scroll_con);       			  				targetScroll_height=parseInt(targetScroll.clip.bottom);  				  				//alert (targetScroll_height + " " + targetScroll.ypos);       		}	if (ie4)        		{       			targetScroll = eval (scroll_div + ".style");       			conScroll = eval (scroll_con + ".style");       			       			targetScroll_height = eval (scroll_div + ".offsetHeight");       			//alert (targetScroll_height + " " + targetScroll.ypos);       		}    if (ns6 || ie5)       		{       			       			targetScroll = document.getElementById(scroll_div);       			conScroll = document.getElementById(scroll_con);       			       			targetScroll_height = document.getElementById(scroll_div).offsetHeight;       			        			       		}    //we're foregoing polling properties everytime we move- since we can pull the height of the text object, but we can't poll the current y value. go figure. stupid NS6. we know it starts at 0, so we'll be working from 0 to the Height value...    targetScroll.ypos = 0    //determines if the text body is shorter than the visible area, in which case, there's no reason to scroll. in that case, it will hide the scroll controls.    if (scroll_vis >= targetScroll_height)    	{    			//hide controls    			if (ns4) conScroll.visibility = "hide";    			if (ie4) conScroll.visibility = "hidden";    			if (ie5 || ns6) conScroll.style.visibility = "hidden";    			    	}    else    	{    		//maxScroll is the maximum amount of pixels that is needed to scroll through the list.    		maxScroll = -(targetScroll_height - scroll_vis);    		//alert (maxScroll);    	}    //loaded is the variable that says everything is done and ready for public consumption. kind of a lockout.		surge = surgeMax;	surge_by = 0;	//surge_by = (parseInt (scroll_vis / (surgeMax + 1))) - scroll_by;	loaded = 1;	    //alert (targetScroll_height + " " + targetScroll.ypos);}function activateSurge(){	surge_by = surgeMax;}function scroll1Down (){		if ((targetScroll.ypos - (scroll_by + surge_by)) > maxScroll)		{			targetScroll.ypos -= (scroll_by + surge_by);			if (surge_by != 0) 				{										surge_by -= 1;				}					}	else		{			targetScroll.ypos = maxScroll;			surge_by = 0;		}	if (ns4) targetScroll.top = targetScroll.ypos;	if (ie4) targetScroll.posTop = targetScroll.ypos;	if (ie5 || ns6) targetScroll.style.top = targetScroll.ypos + "px";	body1loop = setTimeout("scroll1Down()",scroll_delay);}function scroll1Up (){	if ((targetScroll.ypos + (scroll_by + surge_by)) < 0)		{			targetScroll.ypos += (scroll_by + surge_by);			if (surge_by != 0) 				{										surge_by -= 1;				}					}	else		{			targetScroll.ypos = 0;			surge_by = 0;		}	if (ns4) targetScroll.top = targetScroll.ypos;	if (ie4) targetScroll.posTop = targetScroll.ypos;	if (ie5 || ns6) targetScroll.style.top = targetScroll.ypos + "px";	body1loop = setTimeout("scroll1Up()",scroll_delay);}function scroll1Stop(){	surge_by = 0;	clearTimeout (body1loop);}	//-->