<!--
// Rollover List
browserName = navigator.appName;          
				browserVer = parseInt(navigator.appVersion);
				if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >= 4)) 
				{
				   hasImageObject = true;
				}
				else 
				{
				   hasImageObject = false;
				}
				               
				if (hasImageObject)
				{
				   nav_index_lo = new Image();
				   nav_index_lo.src = "http://www.lfc-reds.com/images/nav_lfcreds_wh.gif";
				   nav_index_hi = new Image();
				   nav_index_hi.src = "http://www.lfc-reds.com/images/nav_lfcreds_rd.gif";
				}

// menu rollover functions	
	function imgOn(imgName) {
		if (document.images) {
			document[imgName].src = eval(imgName + "_hi.src");
		}
	}
	
	function imgOff(imgName) {
		if (document.images) {
			document[imgName].src = eval(imgName + "_lo.src");
		}
	}
	
	function swap2Image(imageId1,imageName1,imageId2,imageName2)
	{
		if (document.images)
		{
			document[imageId1].src = eval(imageName1+".src");
			document[imageId2].src = eval(imageName2+".src");
		}
	}

// Standard Pop Up Window functions
	function wOpen(fL, wW, wH) {
		msgWindow=window.open(fL,"imageWindow","toolbar=no,width=" + wW + ",height=" + wH + ",directories=no,status=no,scrollbars=no,resizable=no,menubar=no");
		msgWindow.window.focus();
	}
	
// Dynamic Resizing Pop Up Windows

var reset, distance;

function windowOpen(imageLocation, imageWidth, imageHeight)
{
	displayWindow=window.open("","dynamicWindow","toolbar=no,width=100,height=100,directories=no,status=no,scrollbars=no,resizable=yes,menubar=no");
	displayWindow.document.write('<div style="position:absolute; top:0px; left:0px; z-index:3;">');
	displayWindow.document.write('<a href="javascript:window.close();"><img src="'+imageLocation+'" width="'+imageWidth+'" height="'+imageHeight+'" border="0" alt="Click to close window"></a>');
	displayWindow.document.write('</div>');
	displayWindow.document.bgColor = '#000000';
	displayWindow.document.close();
	displayWindow.window.focus();
	resizeStart(imageWidth,imageHeight);
}

function resizeStart(targetWidth,targetHeight)
{ 
	if (reset) { clearTimeout(reset); }
	var currentWidth = (window.innerWidth) ? displayWindow.window.innerWidth : parseInt(displayWindow.document.body.clientWidth);
	var currentHeight = (window.innerHeight) ? displayWindow.window.innerHeight : parseInt(displayWindow.document.body.clientHeight);
	resizeCycle(targetWidth,targetHeight,currentWidth,currentHeight);
}

	
function resizeCycle(targetWidth,targetHeight,currentWidth,currentHeight)
{ 
	if ((currentWidth != targetWidth) && (currentHeight != targetHeight))
	{ 
		if (currentWidth < targetWidth)
		{ distance = targetWidth - currentWidth;
			distance = (distance/10);
			distance = Math.round(distance);
			distance = (distance<1)?1:distance;
			currentWidth += distance;
		} 
		else
		{ distance = currentWidth - targetWidth;
			distance = (distance/10);
			distance = Math.round(distance);
			distance = (distance<1)?1:distance;
			currentWidth -= distance;
		}
		if (currentHeight < targetHeight)
		{ distance = targetHeight - currentHeight;
			distance = (distance/10);
			distance = Math.round(distance);
			distance = (distance<1)?1:distance;
			currentHeight += distance;
		} 
		else
		{ distance = currentHeight - targetHeight;
			distance = (distance/10);
			distance = Math.round(distance);
			distance = (distance<1)?1:distance;
			currentHeight -= distance;
		}
		displayWindow.window.resizeTo(currentWidth,currentHeight);
		reset = setTimeout('resizeCycle('+targetWidth+','+targetHeight+','+currentWidth+','+currentHeight+')','25');
	}
	return;
}
	
function findObj(n,d)
// searches document for object id tags
{ 
	var p,i,x
	if(!d)d=document;
	if(document.all)
	{ x = eval("document.all."+n);
		return x;
	}
	if((p=n.indexOf("?"))>0&&parent.frames.length)
	{ d=parent.frames[n.substring(p+1)].document
		n=n.substring(0,p)
	}
	if(!(x=d[n])&&d.all) x=d.all[n]
	if(!(x=d[n])&&d.getElementById) x=d.getElementById(n)
	for (i=0;!x&&i<d.forms.length;i++)x=d.forms[i][n]
	for(i=0;!x&&d.layers&&i<d.layers.length;i++)x=findObj(n,d.layers[i].document, '0')
	return x
}


// -->