Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. var tpl = window.showModalDialog("popup.html?type=java","", "dialogWidth:600px; dialogHeight:400px;");
  2.  
  3. function setlLanguage(language)
  4. {
  5. var url;
  6. url = 'popup.html?type='+language;
  7. if (navigator.appName == "Microsoft Internet Explorer")
  8. {
  9. window.location.href = url;
  10. }
  11. else
  12. {
  13. window.location.replace(url);
  14. }
  15. }
Add Comment
Please, Sign In to add comment