function ResizeImage(imageId)
{
    var obj = document.getElementById(imageId);
    if(obj.width > 760)
    {
        obj.width = 760;
    }
}
