//---- FS eShop Function Bibliothek ----- // open FS e-KK window function open_fsekk(link) { var url='http://' + link var width='980'; var height='600'; var hwin_w=(screen.width-width)/2; var hwin_h=(screen.height-height)/2; if (windowopenEkk) { if (hwin.closed) { hwin = window.open(url,"popup","alwaysRaised=yes,toolbar=yes,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + "," + scroll); } else { hwin.href = url; hwin.resizeTo(width,height); hwin.focus(); } } else { hwin = window.open(url,"popup","alwaysRaised=yes,toolbar=yes,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + "," + scroll); windowopenEkk = true; } }