window.addEvent('domready', function() {
	//alert(parent.document.location + " -:- " + document.location)

	if(parent.document.location == document.location){

		// Save Current Body Frame
		setCookie("toLoad", document.location);
		setCookie("frameLoaded", true);
		
		// Get Root Of Project Path
		var urlArray = document.location.href.split("/");
		var currentPath = null;

		for(var i = 0; i < urlArray.length; i++){
			if(currentPath != null){
				if(urlArray[i].indexOf(".htm") != -1){
					currentPath += "index.htm"
				} else {
					currentPath += "../"
				}
			}else{
				switch(urlArray[i]){
					case "help":
						currentPath = ""
					break;			
				}
			}
		}

		// Redirect To Root Path Of Project FrameSet File		
		document.location.href = currentPath

	}else{

		parent.mainNav.treeMenu.openMenuItem(document.location);
	}

})