
// check whether doc is loaded inside frame
// if so, reload in parent area
if ( window.parent != window)
	{
		if (navigator.appName == "Microsoft Internet Explorer")
		{	
			window.parent.navigate (window.location);
		}
		else if (navigator.appName == "Netscape") 
		{						
			window.parent.location.replace (window.location);
		}
	
	}


