function mOvr(src,clrOver,bg){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor =clrOver; 
		src.background = bg;
	} 
} 
function mOut(src,clrIn,bg){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
		src.background = bg;
	} 
} 
function mClick(src,clrIn,bg){
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
		src.background = bg;
	} 
} 
function popup(theurl,winname,features) {
	window.open(theurl,winname,features);
}
function link(theurl,target,features) {
	window.open(theurl,target,features);
}