var m1125_btnCount = 1;
var m1125_staCount = 3;
var m1125_btnImages = new Array();
for (i= 0; i< m1125_btnCount; i++)
{
	m1125_btnImages[i] = new Array();
	for (j= 0; j< m1125_staCount; j++)
	{
		m1125_btnImages[i][j] = new Image();
		m1125_btnImages[i][j].src = 'images/m1125_mbtn' + i + '_' + j + '.gif';
	}
}
function m1125_btnMouseOut(img)
{
	document.images[img].src = m1125_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][0].src;
};
function m1125_btnMouseOver(img)
{
	document.images[img].src = m1125_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][1].src;
};
function m1125_btnMouseDown(img)
{
	document.images[img].src = m1125_btnImages[img.substring(img.indexOf('_mbtn')+5,img.length)][2].src;
};
function m1125_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m1125_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m1125_btnMouseOver('m1125_mbtn"+iIndex+"')\" onMouseOut=\"m1125_btnMouseOut('m1125_mbtn"+iIndex+"')\" onMouseDown=\"m1125_btnMouseDown('m1125_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m1125_mbtn"+iIndex+"_0.gif\" name=m1125_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m1125_get_table(bHor) {
str="<table id=\"m1125_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m1125_gen_td(0,"http://www.youinc.org/Intern/InternApplication.pdf","","134","26","Download Application");
str+="</tr>";
str+="</table>";
return str;
};
result=m1125_get_table(true);
document.write(result);
