    function swap(imgName, fileName)
    {
      var PreLoadImg = new Image();
      PreLoadImg.src = fileName;
      var imgObj = eval("document."+imgName);
      if (typeof(imgObj)!='undefined') imgObj.src = fileName;
    }
    
    function swapthis(object,fileName)
    {
      var PreLoadImg = new Image();
      PreLoadImg.src = fileName;
      object.src = fileName;    
    }

	function openSystemPopup(url)
	{
		popup = window.open('about:blank','detailpopup','scrollbars=yes, resizable=yes, height=400,width=750, top=50, left=50');
		popup.document.write('<html><head><title>buschfeld.de</title><head><body style="margin:0;padding:0"><img src="'+url+'" style="border:none"></body></html>');
	}