var m2623_btnCount = 1;
var m2623_staCount = 3;
var m2623_btnImages = new Array();
for (i= 0; i< m2623_btnCount; i++)
{
	m2623_btnImages[i] = new Array();
	for (j= 0; j< m2623_staCount; j++)
	{
		m2623_btnImages[i][j] = new Image();
		m2623_btnImages[i][j].src = 'images/m2623_mbtn' + i + '_' + j + '.gif';
	}
}
function m2623_btnMouseOut(img)
{
	document.images[img].src = m2623_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m2623_btnMouseOver(img)
{
	document.images[img].src = m2623_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m2623_btnMouseDown(img)
{
	document.images[img].src = m2623_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m2623_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m2623_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m2623_btnMouseOver('m2623_mbtn"+iIndex+"')\" onMouseOut=\"m2623_btnMouseOut('m2623_mbtn"+iIndex+"')\" onMouseDown=\"m2623_btnMouseDown('m2623_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m2623_mbtn"+iIndex+"_0.gif\" name=m2623_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m2623_get_table(bHor) {
str="<table id=\"m2623_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m2623_gen_td(0,"http://www.youinc.org/Intern/search.aspx","","84","26","Intern Search");
str+="</tr>";
str+="</table>";
return str;
};
result=m2623_get_table(true);
document.write(result);
