home *** CD-ROM | disk | FTP | other *** search
- var ketkpin = {
- onLoad: function() {
- // initialization code
- this.initialized = true;
- this.strings = document.getElementById("ketkpin-strings");
- },
-
- onMenuItemCommand: function(e) {
- var my_url=window.content.location.href;
- alert(my_url);
- window.content.location.href="http://ketkp.in/index-exp.php?url="+escape(my_url);
- // window.location="http://ketkp.in/index-exp.php?url="+escape(myurl);
- },
- onMenuItemCommand2: function(e) {
- var my_url=window.content.location.href;
- alert(my_url);
- window.content.location.href="http://ketkp.in/index-exp.php?url="+escape(my_url);
- // window.location="http://ketkp.in/index-exp.php?url="+escape(myurl);
- },
-
- onToolbarButtonCommand: function(e) {
- // just reuse the function above. you can change this, obviously!
- ketkpin.onMenuItemCommand(e);
- }
- };
-
- window.addEventListener("load", ketkpin.onLoad, false);
-