<!--
// Routine to open a window
function Window_Open(TheUrl, TheWidth, TheHeight)
	{
	var WindowChild;
	var TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,statusbar=no,resizable=yes,title=no,titlebar=no,width=" + TheWidth + ",height=" + TheHeight;
	TheWindowParams += ",left=" + ((screen.Width - TheWidth) / 2)
			+ ",top=" + ((screen.Height - TheHeight) / 2);
	if (WindowChild && !WindowChild.closed)
		WindowChild.location = TheUrl;
	else
		WindowChild = window.open(TheUrl,"ModalPopup",TheWindowParams);
	}

// Routine to do an image rollover
function Mouse_on_over(TheImage)
	{
	var TheImage;
	//TheImage.item(i).className 
	TheImage = document.getElementById(TheImage);
	if (TheImage.className != "Current")
		TheImage.src = TheImage.src.replace(".gif", "_hi.gif");
	}

// Routine to do an image rollover
function Mouse_on_out(TheImage)
	{
	var TheImage;
	TheImage = document.getElementById(TheImage);
	if (TheImage.className != "Current")
		TheImage.src = TheImage.src.replace("_hi.gif", ".gif");
	}

//-->