function customWindowOpen(strUrl, strWindow, strParams, iWidth, iHeight)
{
	var
		iLeft, iTop;
	iLeft = (window.screen.width - iWidth) / 2;
	iTop = (window.screen.height - iHeight) / 2;
	strParams = strParams + ",width=" + iWidth.toString() + ",height=" + iHeight.toString() + ",left=" + iLeft.toString() + ",top=" + iTop.toString();
	window.open(strUrl, strWindow, strParams);
}

//
// Rollover
//
function change_img(name,over)
{
	if(window.document.images) 
	{
		if (over)
			window.document.images[name].src = "/MA/Images/" + name + "_over.gif";
		else
			window.document.images[name].src = "/MA/Images/" + name + ".gif";
	}
}