<!--
//Function to Pop-Up pieces of Matrix
function openMtx(URLJump) { 
//below allows the java to determine the screen width and height
//the -### at the end of each is half the size of the window
//below is to align to top
	var top = 0;
//below is to center the window vertical
//	var top = (screen.height/2)-225;
//below is to center the window horizontal
	var left = (screen.width/2)-310;
//define the features of the window
	var mtxFeatures =  " toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=620,height=450,top=" + top + ",left=" + left;
//open the window
	var windowName = "Matrix";
	window.open(URLJump,windowName,mtxFeatures);
}
//-->