blob: 808e4b54dbf31a121be06ec16d28da52dcb9dc4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<%= $heading1 = "Setup my services";
$heading1 = "Package list" if $wholesale_view;
$provision_list = "provision_list";
$provision_list = "ws_list" if $wholesale_view;
''; %>
<SCRIPT>
function areyousure(href, message) {
if (confirm(message) == true)
window.location.href = href;
}
</SCRIPT>
<%= include('header', $heading1) %>
<%= include($provision_list) %>
<%= include('footer') %>
|