<!--
if (document.images) { // Preloaded images
n11 = new Image();
n11.src = "images/ani0_14.jpg";
n12 = new Image();
n12.src = "images/ani1_14.jpg";
n13 = new Image();
n13.src = "images/ani2_14.jpg";
n14 = new Image();
n14.src = "images/ani3_14.jpg";
n15 = new Image();
n15.src = "images/ani4_14.jpg";
n16 = new Image();
n16.src = "images/cp_top_06.jpg";


}
function timeimgs(numb) { // Reusable timer
thetimer = setTimeout("imgturn('" +numb+ "')", 1900);
}
function imgturn(numb) { // Reusable image turner
if (document.images) {
if (numb == "7") { // This will loop the image
document["n1"].src = eval("n11.src");
timeimgs('2');
}
else { document["n1"].src = eval("n1" + numb + ".src");
timeimgs(numb = ++numb);
}
}
}

// popup script

function openWindow(url, name) {
  var l = openWindow.arguments.length;
  var w = "";
  var h = "";
  var features = "";

  for (i=2; i<l; i++) {
    var param = openWindow.arguments[i];
    if ( (parseInt(param) == 0) ||
      (isNaN(parseInt(param))) ) {
      features += param + ',';
    } else {
      (w == "") ? w = "width=" + param + "," :
       h = "height=" + param;
    }
  }

  features += w + h;
  var code = "popupWin = window.open(url, name";
  if (l > 2) code += ", '" + features;
  code += "')";
  eval(code);
  }


// -->