<!--

function window_onblur() {window.close()}
function go_back() { window.history.go(-1)}
function go_forward() { window.history.go(1)}


function ShowReport(sRepFile) {
  var iHeight = 550;
  var iWidth = 710;
  var winl = (screen.width - iWidth) / 2;
  var wint = (screen.height - iHeight) / 2;
  winprops = 'height=' + (iHeight + 30) + ',width=' + (iWidth + 20) + ',top=' + wint + ',left=' + winl
  winprops = winprops + ',scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no'
  win = window.open("ShowReport.aspx?RepFile=" + sRepFile, "LetterNetworkReport", winprops)
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

	function ShowClipboarder(sHTML) {
	  var iHeight = 470;
	  var iWidth = 310;
	  var winl = (screen.width - iWidth) / 2;
	  var wint = (screen.height - iHeight) / 2;
	  winprops = 'height=' + (iHeight + 30) + ',width=' + (iWidth + 20) + ',top=' + 20 + ',left=' + 20
	  winprops = winprops + ',scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no'
	  win = window.open("ShowClipboarder.aspx?html=" + sHTML, "CopyToClipboard", winprops)
	  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
function OpenReport(sURL) 
	{
	var winl = (screen.width - 800) / 2;
	var wint = (screen.height - 600) / 2;
	winprops = 'height='+600+',width='+800+',top='+wint+',left='+winl
	winprops = winprops+',scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no'
	win = window.open(sURL, "Preview", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}	

//-->

