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 popup(url)
{
	newwindow=window.open(url,'name','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=700,height=590,left=10,top=5');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popup2(url)
{
	newwindow=window.open(url,'name','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=400,height=280,left=10,top=5');
	if (window.focus) {newwindow.focus()}
	return false;
}

function out(id)
{ 
  if(document.images) (new Image()).src="cgi-bin/af/out2.cgi?id=" + id;  
  return true;
}

