Guest User

Untitled

a guest
Jul 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <script type="text/javascript">
  2. //<![CDATA[
  3. function loadwindow(url){
  4. var winwidth=(screen.width||document.client.width);
  5. var wdth=(winwidth==1024||winwidth<1280)? "1024" : "1280";
  6. document.getElementById("dwindow").style.display='';
  7. document.getElementById("dwindow").style.left=(document.documentElement.clientWidth-wdth)/2 + "px";
  8. document.getElementById("dwindow").style.width=wdth + "px";
  9. document.getElementById("dwindow").style.height=(document.documentElement.clientHeight)-20 + "px";
  10. document.getElementById("cframe").src=url;
  11. document.getElementById("cframe").style.height=(document.documentElement.clientHeight)-20 +"px";
  12. document.getElementById("cframe").style.width=(wdth-2) +"px";
  13. document.getElementById("cframe").style.left=(document.documentElement.clientWidth-wdth)/2 + "px";
  14. }
  15.  
  16. function closeit(){
  17. document.getElementById("dwindow").style.display="none"
  18. document.getElementById("cframe").src=""
  19. }
  20. document.write('<div id="dwindow" style="position:relative;background-color:#333333;cursor:pointer;display:none;"><div align="right" style="background-color:#333333;font-size:70%;color:#00ffff;"><b>Close Window-----><\/b>&nbsp;<img src="./images/close.gif" onclick="closeit()" title=" Close displayview " alt="" /><\/div>');
  21. document.write('<iframe id="cframe" src="" frameborder= "0" style="background:#000000;position:fixed;border:1px solid #525252;z-index:1;"><\/iframe><\/div>');
  22. //]]>
  23. </script>
Add Comment
Please, Sign In to add comment