function ShowMyXboxLiveTag (obj)
{
	var tag = document.getElementById(obj); 
	tag.style.display = 'inline'; 
	setTimeout("MakeGrow('"+obj+"', 1);");
}

function HideMyXboxLiveTag (obj)
{
	var tag = document.getElementById(obj);
	tag.height = 0;
	tag.width = 0;
	tag.style.display = 'none'; 
}

function MakeGrow(objID)
{

    var setT = false;
    var obj = document.getElementById(objID);
    if(parseInt(obj.width) < 204)
    {
	    obj.width = parseInt(obj.width) + 3;
	    setT=true;
    }
    if(parseInt(obj.height) < 140)
    {
	    obj.height = parseInt(obj.height) + 2;
	    setT=true;
    }

    if(setT)
    {
	    setTimeout("MakeGrow('"+objID+"', 1);");
    }
}

