<!--
function followlink(popurl)
{
winpops=window.open(popurl,"","resizable=yes,scrollbars=yes,menubar=yes,top=5,left=5,width=750,height=580")
}

function reset()
{
	for	(i=1; i<=normalImages.length; i++)
	{
		obj = eval('document.list' + i);
		obj.src = 'images/' + normalImages[i-1];
	}

}

// used on mouseover
// swap the named image into "hover" state
// but only if it is not already in "click" state
function mouseover(num)
{
	obj = eval('document.list' + num);
	str = obj.src;
	if (str.search(clickImages[num-1]) == -1)
	{
		obj.src = 'images/' + hoverImages[num-1];
	}
}

// swap the named image into "click" state
// previously clicked images must go back to "normal" state first 
function mouseclick(num) {
	reset();
	obj = eval('document.list' + num);
	obj.src = 'images/' + clickImages[num-1];
}

// used on mouseout
// swap the named image into "normal" state
// but only if it is not already in "click" state
function mouseout(num)
{
	obj = eval('document.list' + num);
	str = obj.src;

	if (str.search(clickImages[num-1]) == -1)
	{
		obj.src = 'images/' + normalImages[num-1];
	}
}

/*
function followlinkold (link) {
	if (document.getElementById('main')) {
		document.getElementById('main').innerHTML="<iframe style='height:700px; width:620px' src="+link+"></iframe>"
	}
	if (!document.getElementById('main')) {
	window.location=('/index.html') ;
	}
}
*/
//-->