var m4123_btnCount = 1;
var m4123_staCount = 3;
var m4123_btnImages = new Array();
for (i= 0; i< m4123_btnCount; i++)
{
	m4123_btnImages[i] = new Array();
	for (j= 0; j< m4123_staCount; j++)
	{
		m4123_btnImages[i][j] = new Image();
		m4123_btnImages[i][j].src = 'images/m4123_mbtn' + i + '_' + j + '.gif';
	}
}
function m4123_btnMouseOut(img)
{
	document.images[img].src = m4123_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m4123_btnMouseOver(img)
{
	document.images[img].src = m4123_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m4123_btnMouseDown(img)
{
	document.images[img].src = m4123_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m4123_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m4123_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m4123_btnMouseOver('m4123_mbtn"+iIndex+"')\" onMouseOut=\"m4123_btnMouseOut('m4123_mbtn"+iIndex+"')\" onMouseDown=\"m4123_btnMouseDown('m4123_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m4123_mbtn"+iIndex+"_0.gif\" name=m4123_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m4123_get_table(bHor) {
str="<table id=\"m4123_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m4123_gen_td(0,"http://www.youinc.org/programs/cbs/cbs.htm","","101","26","Community-Based Programs");
str+="</tr>";
str+="</table>";
return str;
};
result=m4123_get_table(true);
document.write(result);
