/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function resizeImage()
{
    var window_width = document.body.clientWidth - 450;
    if(window_width > 900)
    {
        window_width = 900;
    }
    try
    {
        document.images[0].style.width = window_width;
    }catch(err)
    {
        if(document.sliderpic != null)
        {
            document.sliderpic.style.width = window_width;
        }
    }
}


