// JavaScript Document

<!--
   
   function mouseOver(src,colorOver)
   {
   if (!src.contains(event.fromElement))
   {
   src.style.cursor = 'hand'; src.bgColor = colorOver;
   }
   }
   function mouseOut(src,colorIn)
   {
   if (!src.contains(event.toElement))
   {
   src.style.cursor = 'default';
   src.bgColor = colorIn;
   }
   }
   function mouseClk(src)
   {
   if(event.srcElement.tagName=='TD')
   {
   src.children.tags('A')[0].click();
   }
   }
// -->

<!--
function openWindow(URL) {
  popupWin = window.open(URL, 'popup', 'dependent=0,height=200,width=500,screenX=100,left=100,screenY=100,top=100,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0', 'launcher');

 if (window.focus) {
     popupWin.focus();
     }
}
// -->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->