<!-- Open New Windows
function openWindows(theURL,winName,features) {
window.open(theURL,winName,features);
}
// End -->

<!--Photo Control
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}

function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=40
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}
// End -->

<!-- Text Control
var colors=new Array();
colors[0] = 0
colors[1] = "#FF0000"
colors[2] = "#FF9900"
colors[3] = "#FFFF00"
colors[4] = "#00FF00"
colors[5] = "#00FFFF"
colors[6] = "#FF00FF"
colors[7] = "#0000FF"

function ColorChange() {
// cycle through colors on the timer
if (++colors[0]==colors.length) colors[0]=1;
document.all.ColorChange.style.color = colors[colors[0]];
window.tm=setTimeout('ColorChange()',100)
}
// End -->




