function screenWidth(win)
{        
    return win.document.body.clientWidth;
}

function screenHeight(win)
{
    return win.document.body.clientHeight;
}

