 function popup(url, name, features) {
		
	var defaultfeatures='scrollbars=yes,resizable=yes,width=480,height=200,left=200,top=200'
		if (features == null ) { 
			features = defaultfeatures;
			}
		if (name == null ) {
			name = 'popup'
			}
		window.open(url, name, features);
	}
function animWindow(htmlWin) {
         lgWindow = window.open(htmlWin, 'lgWin', 'height=270,width=270')
}

  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();
    }
  }


   NS4 = (document.layers); 
   IE4 = (document.all); 
   ver4 = (NS4 || IE4);    
   isMac = (navigator.appVersion.indexOf("Mac") != -1); 
   isMenu = (NS4 || (IE4 && !isMac)); 
 
