// Checks if parent is GoAnywhereWebClientContainer then change its location to the current page location
function checkForContainer(){
	
	if(window.parent != null && window.parent.location != this.location)
	{
		if(window.parent.appContainer == "GoAnywhereWebClientContainer")
		{
			window.parent.location=this.location;
		}
	}
	
}