statuss();
function statuss()
{
        //window.status = "Linksammlung für Obertauern, Radstadt, Zauchensee, Wagrain, Forstau, Untertauern und Altenmarkt ";
	//setTimeout("statuss()", 1);
}

if (window.Event) // Only Netscape will have the CAPITAL E.
  document.captureEvents(Event.MOUSEUP); // catch the mouse up event
 
function nocontextmenu()  // this function only applies to IE4, ignored otherwise.
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
 
function norightclick(e) // This function is used by all others
{
 if (window.Event) // again, IE or NAV?
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 
}
 
document.oncontextmenu = nocontextmenu;  // for IE5+
document.onmousedown = norightclick;  // for all others

function set_bookmark()
{
	// Internet Explorer ? 
	if (document.all)
	{
		var bookmarkurl = "http://www.gastro-info.at";
		var bookmarktitle = "Linksammlung für Obertauern, Radstadt, Zauchensee, Wagrain, Forstau, Untertauern und Altenmarkt ";
		window.external.AddFavorite(bookmarkurl,bookmarktitle);
	}
	else
	{
		alert('Leider unterstützt Ihr Browser nicht\ndas automatische Setzen von Bookmarks!\n\nWir empfehlen Ihnen die Nutzung von\nObertauern, Radstadt, Zauchensee, Altenmarkt, Wagrain, Forstau, Untertauern\nMS Internet Explorer!');
	};
	
	return;

};
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}