function mouseOn(src,color,href){ 
	{ 
		src.style.cursor = 'hand';
		src.bgColor = color;
		href.style.color = "#ffffff"; 
	} 
} 
function mouseOff(src,color,href){ 
	{ 
		src.style.cursor = 'default'; 
		src.bgColor = color; 
		href.style.color = "#336699";
	}
} 
function mouseClick(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('a')[0].click();
}

function openWindow(url,x,y) {
  var settings
  settings = "width=" + x + ", height=" + y + ", toolbars=no, scrollbars = no"
  popupWin = window.open(url,'popupwin',settings)
}