-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup_cvv.php
80 lines (61 loc) · 2.3 KB
/
popup_cvv.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/*------------------------------------------------------------------------------
$Id: popup_cvv.php 17 2012-06-04 20:33:29Z deisold $
XTC-CC - Contribution for XT-Commerce http://www.xt-commerce.com
modified by http://www.netz-designer.de
Copyright (c) 2003 netz-designer
-----------------------------------------------------------------------------
based on:
$Id: popup_cvv.php 17 2012-06-04 20:33:29Z deisold $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
------------------------------------------------------------------------------*/
require ('includes/application_top.php');
require (DIR_WS_LANGUAGES.$_SESSION['language'].'/modules/payment/cc.php');
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<SCRIPT type="text/javascript">
<!--
// prevent click click
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
var i=0;
function resize() {
if (navigator.appName == 'Netscape') i=40;
window.resizeTo(480, 460-i);
self.focus();
}
//-->
</SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<title><?php echo TITLE; ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo 'templates/'.CURRENT_TEMPLATE.'/stylesheet.css'; ?>" />
</head>
<style type="text/css"><!--
BODY { margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; }
//--></style>
<body onload="resize();">
<?php
$info_box_contents = array ();
$info_box_contents[] = array ('align' => 'left', 'text' => HEADING_CVV);
new infoBoxHeading($info_box_contents);
$info_box_contents = array ();
$info_box_contents[] = array ('align' => 'left', 'text' => TEXT_CVV);
new infoBox($info_box_contents);
?>
<p class="smallText" align="right"><?php echo '<a href="javascript:window.close()">' . TEXT_CLOSE_WINDOW . '</a>'; ?></p>
</body>
</html>