<!--
moQualify = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))

function mOvr(src,clrOver)
{
  if (!src.contains(event.fromElement))
  {
    src.style.cursor = 'hand'; src.bgColor = clrOver;
  }
}

function mOut(src,clrIn)
{
  if (!src.contains(event.toElement))
  {
    src.style.cursor = 'default';
    src.bgColor = clrIn;
  }
}

function mClk(src)
{
  if(event.srcElement.tagName=='TD')
  {
    src.children.tags('A')[0].click();
  }
}

function MouseHandle(img, fm, msg)
{
  if(document.images)
  {
    document.images[fm].src=img;
  }
  window.status = msg
  return true;
}


function openimagewindow(htmltext, windowTitle, fontcolor)
{
		lrgimg = window.open("","lrgimgwin","width=300, height=215, scrollbars=0");
		lrgimg.moveTo(100,100)
		lrgimg.document.write("<html><title>" + windowTitle +"</title><LINK HREF='css/standard.css' REL='STYLESHEET'><body leftmargin='0' topmargin='0' marginheight='0' marginwidth='0' bgcolor='#ffffff'>")
		lrgimg.document.write("<table width='100%' align='center' border='0' cellpadding='0' cellspacing='0'><tr><td><img src='../spirit/graphics/single_pixel.gif' width='1' height='5' alt='' border='0'></td></tr>")
		lrgimg.document.write("<tr><td align='right'><a href='' onclick='javascript:self.close()'><font size='2' color='" + fontcolor + "' face='arial'><B>Close window</B></font></a>&nbsp;&nbsp;</td></tr>")
		lrgimg.document.write("<tr><td align='left' class='text9'><img src='../spirit/graphics/single_pixel.gif' width='1' height='8' alt='' border='0'><br>" + htmltext + "</td></tr>")
		lrgimg.document.write("<tr><td align='right'><a href='' onclick='javascript:self.close()'><font size='2' color='" + fontcolor + "' face='arial'><B>Close window</B></font></a>&nbsp;&nbsp;</td></tr>")
		lrgimg.document.write("</table></body></html>")
		lrgimg.document.close()
		lrgimg.focus()
}

//-------------------------------------------------------------------------------------------------
//
// update_form(formname, formtask, misc, block) - called from mouseover event to submit a form with
//                                                the specified form name but first will update the
//                                                value of the hidden form element 'Task' and the
//                                                values of the hidden form elements 'Misc' and
//                                                'Block' if they are specified.
//
//-------------------------------------------------------------------------------------------------
function update_form(formname, formtask, misc, misc2, misc3, misc4, misc5, misc6, misc7)
{
  document[formname].elements.Task.value=formtask;
  if (misc)
  {
    document[formname].elements.Misc.value=misc;
  }
  if (misc2)
  {
    document[formname].elements.Misc2.value=misc2;
  }
  if (misc3)
  {
    document[formname].elements.Misc3.value=misc3;
  }
  if (misc4)
  {
    document[formname].elements.Misc4.value=misc4;
  }
  if (misc5)
  {
    document[formname].elements.Misc5.value=misc5;
  }
  if (misc6)
  {
    document[formname].elements.Misc6.value=misc6;
  }
  if (misc7)
  {
    document[formname].elements.Misc7.value=misc7;
  }
  document[formname].submit();
}


//-->
