// JavaScript Document

function showCategoryInfo(category)
{
	document.getElementById("selected-category-text").innerHTML = document.getElementById(category).innerHTML;
	cat_broswer = "browser-" + category;
	document.getElementById("all-categories-browser").innerHTML = document.getElementById(cat_broswer).innerHTML;
	return false;
}

function breakout_of_frame()
{
	// see http://www.thesitewizard.com/archive/framebreak.shtml
	// for an explanation of this script and how to use it on your
	// own website
	if (top.location != location)
	{
    	top.location.href = document.location.href;
	}
}
