<!-- hide code from older browsers 
if (document.images) {
var prevon = new Image();
prevon.src = "..\/icons\/pageback_on.gif";
var prevoff = new Image();
prevoff.src = "..\/icons\/pageback_off.gif";
var nexton = new Image();
nexton.src = "..\/icons\/pageforward_on.gif";
var nextoff = new Image();
nextoff.src = "..\/icons\/pageforward_off.gif";
}

function OpenWindow( sFileName, nWidth ) {
  if ( !nWidth ) { nWidth = 400; }
  var popWin = eval("window.open('" + sFileName + "','winImage','width=" + (nWidth + 40) + ",height=400,resizable=yes,scrollbars=yes');");
  popWin.focus();
}
	
function OnPrint() {
  var oForm = document.all.frmPrint;
  var sDivContent = document.all.content.innerHTML;
  oForm.txtContent.value = sDivContent;
  oForm.submit();
}

function imageSwap (toggle, image) {
  if (document.images) {
    var imageName = eval(image + toggle + ".src"); 
    document[image].src = imageName;
  }
}
// -->