var m6113_btnCount = 1;
var m6113_staCount = 3;
var m6113_btnImages = new Array();
for (i= 0; i< m6113_btnCount; i++)
{
	m6113_btnImages[i] = new Array();
	for (j= 0; j< m6113_staCount; j++)
	{
		m6113_btnImages[i][j] = new Image();
		m6113_btnImages[i][j].src = 'images/m6113_mbtn' + i + '_' + j + '.gif';
	}
}
function m6113_btnMouseOut(img)
{
	document.images[img].src = m6113_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m6113_btnMouseOver(img)
{
	document.images[img].src = m6113_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m6113_btnMouseDown(img)
{
	document.images[img].src = m6113_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m6113_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m6113_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m6113_btnMouseOver('m6113_mbtn"+iIndex+"')\" onMouseOut=\"m6113_btnMouseOut('m6113_mbtn"+iIndex+"')\" onMouseDown=\"m6113_btnMouseDown('m6113_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m6113_mbtn"+iIndex+"_0.gif\" name=m6113_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m6113_get_table(bHor) {
str="<table id=\"m6113_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m6113_gen_td(0,"http://www.youinc.org/Intern/Profile.htm","","104","26","Intern Profiles");
str+="</tr>";
str+="</table>";
return str;
};
result=m6113_get_table(true);
document.write(result);
