var m6124_btnCount = 1;
var m6124_staCount = 3;
var m6124_btnImages = new Array();
for (i= 0; i< m6124_btnCount; i++)
{
	m6124_btnImages[i] = new Array();
	for (j= 0; j< m6124_staCount; j++)
	{
		m6124_btnImages[i][j] = new Image();
		m6124_btnImages[i][j].src = 'images/m6124_mbtn' + i + '_' + j + '.gif';
	}
}
function m6124_btnMouseOut(img)
{
	document.images[img].src = m6124_btnImages[img.charAt(img.length-1)][0].src;
};
function m6124_btnMouseOver(img)
{
	document.images[img].src = m6124_btnImages[img.charAt(img.length-1)][1].src;
};
function m6124_btnMouseDown(img)
{
	document.images[img].src = m6124_btnImages[img.charAt(img.length-1)][2].src;
};
function m6124_gen_td(iIndex,sLink,sTarget,iWidth,iHeight,sHint) {
str="<td id=\"m6124_mbtn_td"+iIndex+"\">";
str+="<a onMouseOver=\"m6124_btnMouseOver('m6124_mbtn"+iIndex+"')\" onMouseOut=\"m6124_btnMouseOut('m6124_mbtn"+iIndex+"')\" onMouseDown=\"m6124_btnMouseDown('m6124_mbtn"+iIndex+"')\" href=\""+sLink+"\"";
if (sTarget.length >0)
	str+=" target=\""+sTarget+"\"";
str+=">";
str+="<img src=\"images/m6124_mbtn"+iIndex+"_0.gif\" name=m6124_mbtn"+iIndex+" border=0 width=\""+iWidth+"\" height=\""+iHeight+"\" alt=\""+sHint+"\">";
str+="</a></td>";
return str;
};
function m6124_get_table(bHor) {
str="<table id=\"m6124_mbtn_tb\" cellpadding=0 cellspacing=0 border=0>";
str+="<tr>";
str+=m6124_gen_td(0,"#","","94","30","Examples");
str+="</tr>";
str+="</table>";
return str;
};
result=m6124_get_table(true);
document.getElementById("m6124_mtop").innerHTML=result;
