﻿function showbox(boxid){
        document.getElementById(boxid).style.display='block';
}

function hidebox(boxid){
        document.getElementById(boxid).style.display='none';
}



function attention(mylocation)
{
var r=confirm("Möchten Sie den Eintrag wirklich entfernen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}

function attention_nav(mylocation)
{
var r=confirm("Möchten Sie den Menüeintrag wirklich entfernen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}

function attention_img(mylocation)
{
var r=confirm("Möchten Sie das Foto wirklich entfernen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}

function attention_page(mylocation)
{
var r=confirm("Möchten Sie diese Seite wirklich entfernen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}

function attention_article(mylocation)
{
var r=confirm("Möchten Sie diesen Artikel wirklich entfernen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}


function attention_bildauswahl(mylocation)
{
var r=confirm("Möchten Sie dieses Bild übernehmen?");
if (r==true)
  {
  window.location=mylocation;
  }
else
  {
  this.close;
  }
}





function bilderauswahl(theURL)
{
    window.open(theURL,  'HauptFenster','height=600,  width=520, top=20,  left=20,  scrollbars=auto');
}



function pulldown(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



