function orderConfirm(msg, url){ if(confirm(msg)) document.location.replace( url ); } function open_window(TITLE,URL, WIDTH, HEIGHT) { windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + ",scrollbars=yes"; window.open(URL, TITLE , windowprops); } function open_window2(TITLE,URL, WIDTH, HEIGHT) { windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + ",resizable=yes,scrollbars=no"; window.open(URL, TITLE , windowprops); }