// JavaScript Document



function open_popup (artnr, artname, close_win) {
 var artname = artname.replace(/ /g, "_");
 var close_win = close_win.replace(/ /g, "_");
 
fenster = window.open("tpl/popup.tpl.php?artnr="+artnr+"&artname="+artname+"&close_win="+close_win, "JRE_SHOP", "width=550,height=654,status=yes,scrollbars=no,toolbar=no,resizable=yes");
  
 fenster.focus();
};

function open_zahlungsinfo (close_win) {
 var close_win = close_win.replace(/ /g, "_");

fenster = window.open("tpl/popup_zahlungs_info.tpl.php?close_win="+close_win, "JRE_SHOP", "width=550,height=254,status=yes,scrollbars=no,toolbar=no,resizable=false");

 fenster.focus();
};

function FitPic() {

l = (screen.availWidth / 2);
t = (screen.availHeight / 2);

iWidth = (NS)?window.innerWidth:document.body.clientWidth;
iHeight = (NS)?window.innerHeight:document.body.clientHeight;

iWidth = 550 - iWidth;
iHeight = 664 - iHeight;

window.resizeBy(iWidth, iHeight);
self.focus();
};

function open_cc_info(lang)
{
  fenster = window.open("tpl/cc_info.tpl.php?lang="+lang, "CC-Info", "width=350,height=250,status=yes,scrollbars=no,toolbar=no,resizable=yes");
  fenster.focus();
}
