function init_products(){
  
  anchor = document.location.hash;
  
  if(!anchor || anchor=="#top") anchor = '#content0';
  
  hideallbutone(0, anchor);
  window.location.href = '#verytop';

  $('#boxartliste a').click(function () {     
     target = $(this).attr('href');
     hideallbutone(0,target);
     window.location.href = '#top';
     return false;
    });
  $("area").click(function () { 
     target = $(this).attr('href');
     hideallbutone(0,target);
     window.location.href = '#top';
     return false;
    });
    
  function hideallbutone(nr, toshow){
    $('#content'+nr).css('display','none');
    nr++;
    if ($('#content'+nr).length) {
      hideallbutone(nr, toshow);
    }
    else{
      $(toshow).css('display','block');
    }
  }

}
function ShowPopup(Url)
{
	var PopupLeft = (screen.width - 300) / 2;
	var PopupTop = (screen.height - 520) / 2;
	var myWin = window.open(Url, "download", "height=520,width=300,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no,top=" + PopupTop + ",left=" + PopupLeft);
	myWin.focus();
}

function MM_openBrWindow(theURL,winName,features) { 	
	win=window.open(theURL,winName,features);
}
