/* --------------------------------------------------------------------------------------
 * FUNCTION addToFavorites()
 * --------------------------------------------------------------------------------------
 * Sets a new bookmark.
 * Author: re-lounge, http://www.re-lounge.com
 */
function addToFavorites(title,href) {
	// Get-Variable entfernen
	if (href.indexOf("?")>=0)
		href = href.substring(0,href.indexOf("?"));
	if (document.all) {
		window.external.AddFavorite(href,title);
	} else if (window.sidebar && window.sidebar.addPanel) {
		return true;
	} else if( window.opera && window.print ) {
		return true;
	} else {
		return false;
	}
	return false;
}

/* --------------------------------------------------------------------------------------
 * FUNCTION winOpen()
 * --------------------------------------------------------------------------------------
 * Opens a new popup window.
 */
 function winOpen(url, breite, hoehe) {
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
 }
