var m910_btnCount = 1;
var m910_staCount = 3;
var m910_btnImages = new Array();
for (i= 0; i< m910_btnCount; i++)
{
	m910_btnImages[i] = new Array();
	for (j= 0; j< m910_staCount; j++)
	{
		m910_btnImages[i][j] = new Image();
		m910_btnImages[i][j].src = 'images/m910_mbtn' + i + '_' + j + '.gif';
	}
}
function m910_btnMouseOut(img)
{
	document.images[img].src = m910_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m910_btnMouseOver(img)
{
	document.images[img].src = m910_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m910_btnMouseDown(img)
{
	document.images[img].src = m910_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m910_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m910_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m910_btnMouseOver('m910_mbtn"+iIndex+"')\" onMouseOut=\"m910_btnMouseOut('m910_mbtn"+iIndex+"')\" onMouseDown=\"m910_btnMouseDown('m910_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m910_mbtn"+iIndex+"_0.gif\" name=m910_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m910_get_table(bHor) {
str="<table id=\"m910_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m910_gen_td(0,"http://www.youinc.org/Employment/FAQ.htm","","129","23","Difference");
str+="</tr>";
str+="</table>";
return str;
};
result=m910_get_table(true);
document.write(result);
