<!-- Begin
function openImage(img){
image= new Image();
image.src=(img);
openWindow(img);
}

function openWindow(img){
if((image.width!=0)&&(image.height!=0)){
viewImage(img);
}
else{
stuff="openWindow('"+img+"')";
stuff1=setTimeout(stuff,20);
}
}
function viewImage(img){
w=image.width+20;
h=image.height+20;
dims="width="+w+",height="+h;
result=window.open(img,"",dims);
}
// End -->

<!-- Begin
function popUpVer(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, \'" + id + "\', \'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=300,height=80\');");
}
// End -->

<!-- Begin
function setPointer(theRow, thePointerColor)
 {
    if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }
    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }
    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].style.backgroundColor = thePointerColor;
    }

    return true;
 }
// End -->
