document.write(''); document.write(''); //document.write(''); // ************************************** // PopupBox var PopupBox_Timer = null; function PopupBox(boxId,varName) { // this is a js object these properties are default values for implementations of this object // only change these values if you want to change the properties for ALL PopupBoxes. // if you need to change a property for a single instance look for the place where // the PopupBox object is instantiated. For example: mynewpopup.Timeout = 3000; this.Elm = document.getElementById(boxId); this.PopupId = boxId; this.Timeout = 5000; //this.HideDelay = 500; this.Mouseout = false; this.VarName = varName; } PopupBox.prototype.Show = PopupBox_Show; function PopupBox_Show(useHideTimer) { ToggleElement(this.Elm,true); if(useHideTimer) PopupBox_Timer = setTimeout(this.VarName + ".Hide(true)",this.Timeout); } PopupBox.prototype.Hide = PopupBox_Hide; function PopupBox_Hide(byTimer) { if(byTimer) PopupBox_Timer = null; if(PopupBox_Timer == null) ToggleElement(this.Elm,false); } PopupBox.prototype.ResetTimer = PopupBox_ResetTimer; function PopupBox_ResetTimer() { this.ClearTimer(); this.Show(true); } PopupBox.prototype.ClearTimer = PopupBox_ClearTimer; function PopupBox_ClearTimer() { clearTimeout(PopupBox_Timer); PopupBox_Timer = null; } function ToggleElement(elm,show) { //alert("toggle"); if(show) elm.style.display = "inline"; else elm.style.display = "none"; } // ****************************************** document.write('
'); document.write(''); document.write(''); document.write('
'); document.write('
'); document.write(''); document.write('
'); document.write(''); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write('
'); document.write(''); document.write(''); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write(''); document.write(''); document.write('
'); document.write(''); document.write('
'); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write(''); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write(''); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write(''); document.write('
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write('
'); document.write('
');