// JavaScript Document

// ************************************************************

// Erstellt von Markus Maurer im Jahre 2006 www.3web.ch

// ************************************************************

// Abfrage: Wollen Sie löschen?

function nachfragen(seitenLink) {
  if (confirm('Möchten Sie wirklich löschen?')) {
    document.location = seitenLink;
  }
}
// Aufruf onClick="nachfragen('adressen.php?loeschen=ja&ps=<?php echo $_GET['ps'] ?>');return false"

// öffnen eines Pop-Windows
function openMyWindow (theURL,winName,features) {
  window.open(theURL,winName,features);
}
// Aufruf onLoad="openMyWindow('anzeige.html', 'inserat', 'width=1000, height=600, left=150, top=190')"

$(window).load(function(){
  // $("#Ringana").fadeIn('slow', function() {
  $("#Ringana").empty().html('<img src="bilder/RinganaLogo.gif" width="103" height="40">'); // .fadeIn();
  // });
});
