/**
 * @author koese
 */
function seite_merken(){
	
	var s_url="http://www.hotelinformation.de";
	var app = navigator.appName;
	
	if( app =="Microsoft Internet Explorer") {
		window.external.AddFavorite(s_url, '');
	}else{
		
		if( app=="Netscape" )
		{
			if((typeof window.sidebar=="object") && (typeof window.sidebar.addPanel=="function")){
			 window.sidebar.addPanel(document.title,s_url,"");
			}else{
			alert("Ihr Browser wird nicht unterstützt");
		  }

			
		}
		else
		{
			alert( "Ihr Browser wird nicht unterstützt" );
		}
	}
}