function CheckMenu(itemName,menuname,lng) {
  bBadFrames = top.frames.length !=2;
  if (!bBadFrames) {
    bBadFrames = (top.frames[0].name !='top') || (top.frames[1].name != 'bottom') || (top.frames[1].frames.length !=2);
    if (!bBadFrames) {
	  bBadFrames = (top.frames[1].frames[0].name !='menu') || (top.frames[1].frames[1].name != 'content');
	};
  };
  if (bBadFrames) {
    bBadFrames = top.name !='printer';
  };
  if (bBadFrames) {
    if (itemName != "") top.window.location="/"+lng+"/MainFrame.shtm?item="+itemName;
    else top.window.location="/"+lng+"/MainFrame.shtm?location="+window.location+'&menu='+menuname;
  } else {
    //alert(top.currentmenu);
	if ((top.currentmenu == undefined) || (top.currentmenu.toUpperCase() != menuname.toUpperCase())) {
	  top.frames[1].frames[0].window.location = '/'+lng+'/menu.shtm?menu='+menuname;
	};
    //if (top.currentmenu.toUpperCase() != menuname.toUpperCase()) {
	  //alert('/f/menu.shtm?menu='+menuname);
	//  top.frames[1].frames[0].window.location = '/'+lng+'/menu.shtm?menu='+menuname;
	//};
  };
};

function UpdateTitle(TitleText) {
 top.document.title="Infoset - "+TitleText;
 return TitleText;
};

function addFav(LinkTitle) {
  if (window.external!=undefined) {
  	if ((LinkTitle!="") && (LinkTitle!=undefined)) st=LinkTitle; else st=top.document.title;
  	window.external.AddFavorite(document.location.href,st);
  } else {
    alert("Sorry : Only manual bookmark allowed with this browser");
  };
 return false;
};

function openforprint() {            
  win = window.open(document.location.href,"printer","Width=650,Height=450,menubar=yes,toolbar=yes,scrollbars=yes,location=no,resizable=yes");
  //win.document.titi=12345;
  return false;
};

function writeprinterFR() {  	
  if (top.name !='printer') {
    document.write('&nbsp;<a href="" class="pasoul" onclick="return openforprint();" title="Version imprimable"><img src="/images/si-print.gif" height="12" width="12" alt="Version imprimable" border=0>&nbsp;imprimer</a>');
  };
};

function writeFavFR() {  	
  if ((top.name !='printer')  &&  (window.external!=undefined)) {
    document.write('<a href="" class="pasoul" onclick="return addFav();" title="Ajouter aux favoris"><img src="/images/si-favoris.gif" height="12" width="12" alt="Ajouter aux favoris" border=0>&nbsp;favoris</a>');
  };
};


function writeToolsFR() {  	
  if (top.name !='printer') {
    document.write('<nobr>');
  	writeFavFR();
    writeprinterFR();
    document.write('</nobr>');
  };
};

function writeprinterDE() {  	
  if (top.name !='printer') {
    document.write('&nbsp;<a href="" class="pasoul" onclick="return openforprint();" title="Druckversion"><img src="/images/si-print.gif" height="12" width="12" alt="Druckversion" border=0>&nbsp;Druckversion</a>');
  };
};

function writeFavDE() {  	
  if ((top.name !='printer')  &&  (window.external!=undefined)) {
    document.write('<a href="" class="pasoul" onclick="return addFav();" title="Zu den Favoriten hinzufügen"><img src="/images/si-favoris.gif" height="12" width="12" alt="Zu den Favoriten hinzufügen" border=0>&nbsp;Favoriten</a>');
  };
};


function writeToolsDE() {  	
  if (top.name !='printer') {
    document.write('<nobr>');
  	writeFavDE();
    writeprinterDE();
    document.write('</nobr>');
  };
};