var m9536_btnCount = 1;
var m9536_staCount = 3;
var m9536_btnImages = new Array();
for (i= 0; i< m9536_btnCount; i++)
{
	m9536_btnImages[i] = new Array();
	for (j= 0; j< m9536_staCount; j++)
	{
		m9536_btnImages[i][j] = new Image();
		m9536_btnImages[i][j].src = 'images/m9536_mbtn' + i + '_' + j + '.gif';
	}
}
function m9536_btnMouseOut(img)
{
	document.images[img].src = m9536_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m9536_btnMouseOver(img)
{
	document.images[img].src = m9536_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m9536_btnMouseDown(img)
{
	document.images[img].src = m9536_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m9536_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m9536_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m9536_btnMouseOver('m9536_mbtn"+iIndex+"')\" onMouseOut=\"m9536_btnMouseOut('m9536_mbtn"+iIndex+"')\" onMouseDown=\"m9536_btnMouseDown('m9536_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m9536_mbtn"+iIndex+"_0.gif\" name=m9536_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m9536_get_table(bHor) {
str="<table id=\"m9536_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m9536_gen_td(0,"http://www.youinc.org/training/feedback.htm","","181","29","Tell us your thoughts");
str+="</tr>";
str+="</table>";
return str;
};
result=m9536_get_table(true);
document.write(result);
