-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewer.html
36 lines (32 loc) · 1 KB
/
viewer.html
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
<html>
<body scroll="no">
<iframe id="main_screen" src ="http://integrumtech.com" scrolling="no">
<p> </p>
</iframe>
<script type="text/javascript">
var websites = new Array();
websites[0] = "http://builder.integrumdemo.com/crs-billing";
websites[1] = "http://builder.integrumdemo.com/vanpool";
websites[2] = "http://builder.integrumdemo.com/na3-expero-redesign";
websites[3] = "http://builder.integrumdemo.com/savvycollector";
websites[4] = "http://builder.integrumdemo.com/rideralerts";
websites[5] = "http://builder.integrumdemo.com/readphoenix";
websites[6] = "http://builder.integrumdemo.com/na3-sharing-server";
websites[7] = "http://builder.integrumdemo.com/rideralerts";
var i = 0;
setTimeout("change_url(" + i + ")", 30000)
function change_url(url_id)
{
//alert('im here');
document.getElementById('main_screen').src = websites[url_id];
if (i==websites.length-1){
i = 0;
}
else{
i++;
}
setTimeout("change_url(" + i + ")", 30000)
}
</script>
</body>
</html>