// ·£´ý³ëÃâ Div°ü·Ã ÇÔ¼ö function randomShowDiv(divID) { this.divID = divID; this.divOrderArray = new Array(); this.showDivNum = 0; this.isRandom = false; this.tid = null; this.interval = 8000; this.isTab = false; } randomShowDiv.prototype.init = function () { var self = this; var motherDiv = document.getElementById(self.divID); var cont = motherDiv.childNodes; for (var i=0; i= self.divOrderArray.length) self.showDivNum = 0; self.showDiv(self.showDivNum); } randomShowDiv.prototype.showPrevDiv = function () { var self = this; self.showDivNum--; if(self.showDivNum < 0) self.showDivNum = self.divOrderArray.length-1; self.showDiv(self.showDivNum); } function pop_open(url) { win = window.open(url , 'gallery' ,"scrollbars=yes,width=670,height=750,left=0,top=0"); }