function goImgWin(myImage,myWidth,myHeight,origLeft,origTop)
{
//myHeight += 24;
//myWidth += 24;
TheImgWin = window.open(myImage,'image','height=' + myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=no,' + 'menubar=no,scrollbars=no,resizable=yes');
TheImgWin.resizeTo(myWidth+2,myHeight+30);
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}

function update(url, index) 
{
currentIndex = index;
document['MainImage'].src=url;
{
}
return;
}
