﻿<!--
var step = 1;
var whichimage = 1;
function slideit() {
    if (!document.images) return;
    document.images.slide.src = eval("banner" + step + ".src");
    whichimage = step;
    if (step < 3) step++;
    else step = 1;
    setTimeout("slideit()", 10000);
}
slideit();
function slidelink() {
    if (whichimage == 1) window.location = "gpucompute.htm";
    else if (whichimage == 2) window.location = "coprthr.htm";
    else if (whichimage == 3) window.location = "hpc.htm";
}
-->

