function onSee()
{
   window.scroll();
}
function onlogo()
{
   window.location.href="index.html";
}
function onLoadPage()
{
var query = window.location.search;
  // Skip the leading ?, which should always be there,
  // but be careful anyway
  if (query.substring(0, 1) == '?') {
    query = query.substring(1);
  }

	if(query=="")
	{
		document.getElementById("list").style.display = 'inline';
	}
	else
	{
		document.getElementById(query).style.display = 'inline';
	}

}