/* This redirects the browser to the frameset if the current page is being viewed independently
** Works with both browsers.
*/
if (window.top == window.self)
{
	window.top.location = "index.html";
}
