<!-- Force this page to open in the USSS Frame...
function checkFrame(){
	if(top.location.href.indexOf("/index.htm")== -1){
		var fullURL = top.location.href;
		var pos2 = fullURL.indexOf(".htm");
		if(pos2 != -1){
			var pos1 = fullURL.lastIndexOf("/");
			var url = fullURL.substring(pos1 + 1, pos2 + 4);
			if(url == "navigation_left.htm"){
				url = "home.htm";
			}
			top.location.replace("index.htm?" + url + "&1");
		}
	}
}
// --- End --->