//======================================================================= // File Comments: // This file contains any misc javascript functions // This is a compressed version for faster page loading. // The normal vesrion is in the /normal directory function Misc() { this.date = new Date(); this.mac = navigator.platform.indexOf('Mac'); this.text = ''; this.action = false; this.epoch = function() { this.date = new Date(); return this.date.getTime();} this.alert_mac = function(text) { this.text = text; if (this.mac > -1) { setTimeout('alert(Misc.text);', 100);} } this.statusbar = function(text) { window.status = text;} this.confirm_action = function() { this.action = confirm(''); if (this.action == false) { return false;} else { return true;} } } var Misc = new Misc(); //=======================================================================