\n'); } function worldpay(cartId, amount, currency, desc, name, address, postcode, email) { // Open a window wpwin = location.href="fpro/worldpay.asp?cartId=" + cartId + "&amount=" + amount + "¤cy=" + currency + "&desc=" + desc + "&name=" + name + "&address=" + address + "&postcode=" + postcode + "&email=" + email; // Set a timer so we can tell when the window is closed // Note that we can't use the normal unload event because the browser security model won't allow js function calls // between domains //timer = setTimeout("check_wp_window()",500) ; } function check_wp_window() { if (wpwin.closed == false) { // The window is still open...check it again soon timer = setTimeout("check_wp_window()",400) ; } else { // continue... // check to see if the order was processed correctly hello_sweetie_DoFSCommand('verify', 'verify'); } }