function frameInit() {
    var body = document.getElementsByTagName("body").item(0);
    if (body != null) {
        var id = body.getAttribute("id");
        if (id != null) {
            parent.menuFrame.menuSync(id);
        }
    } else {
		var frameset = document.getElementsByTagName("frameset").item(0);
		if (frameset != null) {
			var id = frameset.getAttribute("id");
			if (id != null) {
				parent.menuFrame.menuSync(id);
			}
		}
	}
}
