Guest User

Untitled

a guest
Dec 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <cfif notpaid>
  2. <script type="text/javascript">
  3. notpaid();
  4. </script>
  5. </cfif>
  6.  
  7. modalWin = new CreateModalPopUpObject();
  8. modalWin.SetLoadingImagePath("/dev/images/loading.gif");
  9. modalWin.SetCloseButtonImagePath("/dev/images/remove.gif");
  10.  
  11. function notpaid() {
  12. modalWin.Draggable=false;
  13. modalWin.ShowURL('https://www.sample.com/sample.htm', 320, 350, "Heading");
  14. }
  15. function HideModalWindow() {
  16. modalWin.HideModalPopUp();
  17. window.document.forms[1].submit();
  18. }
Add Comment
Please, Sign In to add comment