
/* Datei: popup.js 					*/
/* Erstellt von Ralph Scherer, September 2006	 	*/
/* Interaktive Popups in 5rot.com 			*/

function show (Seite) {
	document.getElementById(Seite).style.display = 'inline';
}

function hide (Seite) {
	document.getElementById(Seite).style.display = 'none';
}
function Popup (Adresse) {
  Fenster1 = window.open(Adresse, "Infofenster", "width=600,height=737,left=180,top=100,resizable=yes,scrollbars=yes");
  Fenster1.focus();
}