all = new Array ('a','b','c','d','e','f','j','h','g','k','l','m','o','p','q','r','s','t','u','v','w','x','y','z');
browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);
IE=false;
if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0) { IE = true; }
function set(imn, theCol, theAction)
{
	if (!IE){return;}

	if (theAction=='over'){
			imn.src='img/m1und.gif';
			theCol.style.color='#FF0000';
			theCol.style.textDecoration='underline';


	}	else {
			imn.src='img/m1.gif';
			theCol.style.color='#32648C';
			theCol.style.textDecoration='none';
	}
  return true;

} 

function set2(imn, theAction)
{
	if (!IE){return;}

	if (theAction=='over'){
			imn.src='img/bg2.gif';


	}	else {
			imn.src='img/bg0.gif';
	}
  return true;

} 


