<!--
// this script handels the dynamic load into framesets
var chosen = window.location.pathname;
chosen = chosen + window.location.search.replace(/\?/gi,"&");

var my_frame = 0 + (parent.mainFrame ? 1 : 0);
var oldMenuLeft="";
if (!my_frame)
	window.location.href = 'index.cfm?framePage=' + chosen;
else {
	var openPage=chosen.split("/")[chosen.split("/").length-1];
	var menu=parent.menuFrameLeft.document.getElementById("p7TMnav");
	var reload=false;
	if (menu){
		var re = new RegExp("<a[^>]*onclick=\"([^\"]*)\"[^>]*href=\""+openPage+"\"[^>]*>","ig");
		var match=menu.innerHTML.match(re);
		if (match){
			parent.menuFrameLeft.P7_TMclass();
			parent.menuFrameLeft.P7_TMopenByPath(openPage);
		} else {
			reload=true;
			parent.menuFrameLeft.P7_TMclass();
		}
	} else reload=true;
	
	if (reload)
		parent.frmHiddenFrameForFrameBuster.document.location.href="menuLeft.cfm?frmHiddenFrameForFrameBuster=1&openPage="+openPage;	
}
//-->