	<!-- Comment for Incompatible Browsers...

	// Johnny Cison

	function ViewLetter(Letter)
	{
		var tempWidth = ((screen.width/2)-50);
		var tempHeight = ((screen.height/2)-50);
		var letterwin = window.open("letter.cgi?l="+Letter, "LetterWin", "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+tempWidth+",height="+tempHeight);
		letterwin.moveTo( (screen.width - tempWidth)/2, (screen.height - tempHeight)/2 );
		letterwin.focus();
	}

	// End Incompatibility Comment -->

