function GoShop() {
  parent.location.href="http://www.armaturen-versand.de/";
}

function PopUp(PopGFX,NewWidth,NewHeight) {
if (NewWidth == 0) { NewWidth = parseInt(screen.availWidth*0.8); }
if (NewHeight == 0) { NewHeight = parseInt(screen.availHeight*0.8); }

PopPage = window.open('','Details','width='+NewWidth+',height='+NewHeight+',top=10,left=10');
PopPage.focus();
PopPage.document.open();
PopPage.document.writeln('<html><head>');
PopPage.document.writeln('<title>Design-Armaturen</title>');
PopPage.document.writeln('</head>');
PopPage.document.writeln('<body bgcolor=\"white\" marginwidth=0 marginheight=0 style=\"margin:0;\">');
PopPage.document.writeln('<center>');
PopPage.document.writeln('<img src=\"'+PopGFX+'\" border=0>');
PopPage.document.writeln('</center></body></html>');
PopPage.document.close();
}

