function getSiteMap()
{
	var storeId = getParameter("storeId");
	if (storeId == "21553")
	{
		window.location.href="http://www.scholastic.com/sitemap.htm";
	}
	else if(storeId == "10001")
	{
		window.location.href="/webapp/wcs/stores/servlet/TSAdminLanding?storeId=10001&catalogId=10002&langId=-1&viewParam=landingpage/SiteMap.html"
	}
	else
	{
		window.location.href="/webapp/wcs/stores/servlet/storesitemap_10101_-1_10004";
	}
	return false;
}


function getParameter( name )
{
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var tmpURL = window.location.href;
  var results = regex.exec( tmpURL );
  if( results == null )
    return "";
  else
    return results[1];
}