Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <link rel="shortcut icon" id="favicon" type="image/x-icon" href="://static.mobilize.biz/config/favicon.ico">
- <title>Loading...</title>
- <script>
- function setCurrentPage(URL)
- {
- document.cookie = "LASTURL=" + URL;
- }
- function getLastPage() {
- var dc = document.cookie;
- var prefix = "LASTURL" + "=";
- var begin = dc.indexOf("; " + prefix);
- if (begin == -1) {
- begin = dc.indexOf(prefix);
- if (begin != 0) return null;
- } else
- begin += 2;
- var end = document.cookie.indexOf(";", begin);
- if (end == -1)
- end = dc.length;
- return unescape(dc.substring(begin + prefix.length, end));
- }
- function loadContent(defaultLocation) {
- // to get refreshes to work
- if(getLastPage())
- {
- //document.title = "Debug has last page";
- document.getElementById('contentFrame').src = getLastPage();
- } else {
- document.getElementById('contentFrame').src = defaultLocation;
- }
- }
- </script>
- </head>
- <FRAMESET rows="0%,*" framespacing="0" border="0" frameborder="0" onLoad="loadContent('/home')">
- <FRAME id="modelFrame" name="modelFrame" src="/model.html">
- <FRAME id="contentFrame" name="contentFrame" src="">
- </FRAMESET>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment