// Bildwechsel in der Artikeldetailansicht
// a = neues Bild b= Höhes des neuen Bildes
function BTausch(a)
{
document.getElementById('ArtPic').src="/images/artikelbilder/"+a;
}
// -->

function showBigPic(Bild)
{
 GBild = Bild.substr(Bild.lastIndexOf("/"),Bild.length)
 document.getElementById('ArtPic').src="/images/artikelbilder" + GBild;
 document.getElementById("vpl").href="/swf/ohh-mann-zoom.swf?image=/images/artikelbilder/bigs" + GBild;
}

// Sprungmenu
function MM_jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->

<!-- // PopUp Fenster
function fenster(h,w,s,mypage)
{
var win = null;
myname="Card";
scrolling=s;
LeftPosition=(screen.width) ? (screen.width-w)/2 : 0;
TopPosition=(screen.height) ? (screen.height-h)/2 : 0;
settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrolling+',resizable=no';
win=window.open(mypage,myname,settings);
}
// -->

<!-- // Bestaetigungsabfrage -->
function wirklich()
{
var a;
a=confirm("Wollen Sie diese Aktion wirklich durchführen ?");
if (a!=true)
{return false;}
else
{
return true;
}}
// -->

<!-- // Versandkostentabelle - Express-Check -->
function Express_On()
{
document.Versandkosten.Express[0].disabled=false;
document.Versandkosten.Express[1].disabled=false;
document.Versandkosten.Express[2].disabled=false;
}
function Express_Off(form)
{
document.Versandkosten.Express[0].disabled=true;
document.Versandkosten.Express[1].disabled=true;
document.Versandkosten.Express[2].disabled=true;
}
//-->



