function AllGameLink(url,name)
{
  var ms = "<table cellpadding=0 cellspacing=0 width='177'>";
  ms += "<tr><td colspan='4' height='3'></td></tr>";
  ms += "<tr><td width='4'></td><td width=13><img src='images/gamelibrary/arrow.gif' width='13' height='13'></td><td width='4'></td>";
  ms += "<td align='left'><div style='overflow:hidden;width:156px'><nobr><a class='allGameLink' href='" + url + "'>" + name + "</a></nobr></div></td></tr>";
  ms += "<tr><td colspan='4' height='3'></td></tr>";
  ms += "<tr><td colspan='4' height='1' style='background-image:url(images/gamelibrary/dot.gif);background-repeat:repeat-x'></td></tr>";
  ms += "</table>";
  document.write(ms);
}

function setImgSize(imgfile,ctrl)
{
    var img = document.createElement('img');
    img.onload = function (evt) {
	obj=document.getElementById(ctrl);
	obj.width=img.width;
	obj.height=img.height;
    }
    img.src = imgfile;
}
