// JavaScript: Link-Klicks an Flash-Kopf übermitteln
// haupt: Hauptmenüpunkt-Nr. / unter: Untermenüpunkt-Nr.

function doButtonAction(haupt, unter) {
	doButtonReset();
	top.topFrame.document.head.TGotoFrame("/head/menubtn"+haupt, 2); 
    top.topFrame.document.head.TGotoFrame("/head/submen/submenubtn"+unter, 2); 
}
function doButtonReset() {
	var i = 0;
    for (var i = 1; i <= 9; i++) {
    top.topFrame.document.head.TGotoFrame("/head/menubtn"+i, 0); 
	}
}
