function resizeGameList()
{
if (document.getElementById)
{
var browseWindow = document.getElementById('browsewindow');
if (browseWindow)
{
var bSize = getBrowserSize();
var coords = getPageCoords(browseWindow);
browseWindow.style.height = (bSize.height - (coords.y + 20)) + 'px';
}
else
{
}
}
else
{
}
}
function updateHeader( liveGrid, offset ) {
$('bookmark').innerHTML = "Listing movies " + (offset+1) + " - " + (offset+liveGrid.metaData.getPageSize()) + " of " + 
liveGrid.metaData.getTotalRows();
var sortInfo = "";
if (liveGrid.sortCol) {
sortInfo = "&data_grid_sort_col=" + liveGrid.sortCol + "&data_grid_sort_dir=" + liveGrid.sortDir;
}
$('bookmark').href="/rico/livegrid.page" + "?data_grid_index=" + offset + sortInfo;
}
function gameBrowserDocumentLoaded()
{
if (document.getElementById)
{
var browseWindow = document.getElementById('browsewindow');
if (browseWindow)
{
resizeGameList();
}
}
void 1;
}
