﻿function positionScreenElements(){		

    var winH=findBrowserSize().height
    var winW=findBrowserSize().width

    //now take action


    document.getElementById("contentInfo").style.top=(winH/6)+"px"
    document.getElementById("title").style.top=((winH/6)-40)+"px"
    document.getElementById("contentInfo").style.left=(winW/7)+"px"
    document.getElementById("title").style.left=((winW/7)-40)+"px"


if (navigator.appName.indexOf("Microsoft")!=-1) {

document.getElementById("lightBox").style.height="185px"
document.getElementById("darkBox").style.height="185px"
document.getElementById("darkBox").style.width=(winW-410)+"px"

document.getElementById("generalBackground").style.width=(winW-25)+"px"
document.getElementById("generalBackground").style.height=(winH-220)+"px"

document.getElementById("contentInfo").style.width=(winW-(winW/7)-25)+"px"
document.getElementById("contentInfo").style.height=(winH-(winH/6)-210)+"px"



    }
    
    
    
document.getElementById("leafIMG").style.height=(winH-230)+"px"


document.getElementById("lightBox").style.top=(winH-195)+"px"
document.getElementById("darkBox").style.top=(winH-195)+"px"
document.getElementById("contentInfo2").style.top=(winH-180)+"px"

document.getElementById("tag").style.top=(winH-195)+"px"
document.getElementById("mainImages").style.top=(winH-160)+"px"

//document.getElementById("bottomLeftShadow").style.top=(winH-130)+"px"


}





