function viewImage(imageId, width, height)
{
    var rootDir = 0;
    if (imageId >= 1000)
        rootDir = Math.floor(imageId / 1000) * 1000;
    
    // HACK: Need to fix absolute URL    
    var imagePath = "/forumPix/" + rootDir + "/" + imageId + ".jpg";
    var filePath = "http://www.clubtread.com/sforum/imagePreview.asp?image=" + imagePath + "&x=" + width + "&y=" + height;
    
    var winProperties = "height=" + height+ ",width=" + width + ",resizable=yes,scrollbars=yes"    
    window.open(filePath, "preview", winProperties);
}

function uploadImage(callbackFunction)
{
    // HACK: Need to fix absolute URL
    window.open('/Gallery/ImageUploader.aspx', 'addImage', 'height=650,width=800,resizable,status,scrollbars=yes');
}
