﻿// JScript File

function ResizeObject(id)
{
    
    var obj = document.getElementById(id);
    if (!obj) 
    {
        obj = document.getElementById(id);
    }
    
    if (obj != null)
    {
        var w = screen.width;
        var h = screen.height;
        //set style width & height
        if (w == 1024 && h == 768)
        {
            obj.className = '' + id + '_1024x768';
        }
        else if (w == 800 && h == 600)
        {
            obj.className = '' + id + '_800x600';
        }
//        obj.style.height = "" + (h * 0.84) + "px";
//        obj.style.width = "" + (w * 0.63) + "px";
    }
}