blob: cd8028a0df484c3e2b220e1206dfd158241995d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<%= $url = "$selfurl?session=$session_id;action=";
$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') %>
|