var m3067_btnCount = 1;
var m3067_staCount = 3;
var m3067_btnImages = new Array();
for (i= 0; i< m3067_btnCount; i++)
{
	m3067_btnImages[i] = new Array();
	for (j= 0; j< m3067_staCount; j++)
	{
		m3067_btnImages[i][j] = new Image();
		m3067_btnImages[i][j].src = 'images/m3067_mbtn' + i + '_' + j + '.gif';
	}
}
function m3067_btnMouseOut(img)
{
	document.images[img].src = m3067_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m3067_btnMouseOver(img)
{
	document.images[img].src = m3067_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m3067_btnMouseDown(img)
{
	document.images[img].src = m3067_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m3067_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m3067_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m3067_btnMouseOver('m3067_mbtn"+iIndex+"')\" onMouseOut=\"m3067_btnMouseOut('m3067_mbtn"+iIndex+"')\" onMouseDown=\"m3067_btnMouseDown('m3067_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m3067_mbtn"+iIndex+"_0.gif\" name=m3067_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m3067_get_table(bHor) {
str="<table id=\"m3067_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m3067_gen_td(0,"http://www.youinc.org/About/Mission Poster.pdf","","110","26","Mission Statement");
str+="</tr>";
str+="</table>";
return str;
};
result=m3067_get_table(true);
document.write(result);
