//Img Array
var Img_ = new Array();
  Img_[0]="editable_content/ad01.jpg";
  Img_[1]="editable_content/ad02.jpg";
  Img_[2]="editable_content/ad03.jpg";

var new = 0;
var totalBan = Img_.length;

function cycleBan() {
  new++;
  if (new == totalBan) {
    new = 0;
  }
  document.adbanner.src=Img_[new];
  // 4 seconds
  setTimeout("cycleBan()", 4*1000);
}
window.onload=cycleBan;
//

//win pop up
function openpopup(popurl){
var winpops=window.open(popurl,"","width=420,height=580")
}
//