Lines 79-85
function openBasket() {
Link Here
|
79 |
if ( strCookie ) { |
79 |
if ( strCookie ) { |
80 |
var iW = 820; |
80 |
var iW = 820; |
81 |
var iH = 450; |
81 |
var iH = 450; |
82 |
var optWin = "dependant=yes,status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height="+iH+",width="+iW; |
82 |
var optWin = "dependent=yes,status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height="+iH+",width="+iW; |
83 |
var loc = CGIBIN + "basket/basket.pl?" + strCookie; |
83 |
var loc = CGIBIN + "basket/basket.pl?" + strCookie; |
84 |
var basket = open(loc, "basket", optWin); |
84 |
var basket = open(loc, "basket", optWin); |
85 |
if (window.focus) {basket.focus()} |
85 |
if (window.focus) {basket.focus()} |
Lines 335-341
function sendBasket() {
Link Here
|
335 |
|
335 |
|
336 |
var loc = CGIBIN + "basket/sendbasket.pl?" + strCookie; |
336 |
var loc = CGIBIN + "basket/sendbasket.pl?" + strCookie; |
337 |
|
337 |
|
338 |
var optWin="dependant=yes,scrollbars=no,resizable=no,height=300,width=450,top=50,left=100"; |
338 |
var optWin="dependent=yes,scrollbars=no,resizable=no,height=300,width=450,top=50,left=100"; |
339 |
var win_form = open(loc,"win_form",optWin); |
339 |
var win_form = open(loc,"win_form",optWin); |
340 |
} |
340 |
} |
341 |
|
341 |
|
Lines 345-351
function downloadBasket() {
Link Here
|
345 |
|
345 |
|
346 |
var loc = CGIBIN + "basket/downloadcart.pl?" + strCookie; |
346 |
var loc = CGIBIN + "basket/downloadcart.pl?" + strCookie; |
347 |
|
347 |
|
348 |
open(loc,"win_form",'dependant=yes,scrollbars=no,resizable=no,height=300,width=450,top=50,left=100'); |
348 |
open(loc,"win_form",'dependent=yes,scrollbars=no,resizable=no,height=300,width=450,top=50,left=100'); |
349 |
} |
349 |
} |
350 |
|
350 |
|
351 |
function printBasket() { |
351 |
function printBasket() { |