function getScreenHeight() 
{ 
    var myHeight = 0; 

    if( typeof( window.innerHeight ) == 'number' ) {
        //Non-IE
        myHeight = window.innerHeight;
    } 
    else if( document.documentElement && document.documentElement.clientHeight ) {
        //IE 6+ in 'standards compliant mode'
        myHeight = document.documentElement.clientHeight;
    } 
    else if( document.body && document.body.clientHeight ) {
        //IE 4 compatible
        myHeight = document.body.clientHeight;
    }
    return myHeight;
}

function getScreenWidth() 
{ 
    var myWidth = 0; 

    if( typeof( window.innerHeight ) == 'number' ) {
        //Non-IE
        myWidth = window.innerWidth;
    } 
    else if( document.documentElement && document.documentElement.clientHeight ) {
        //IE 6+ in 'standards compliant mode'
        myWidth = document.documentElement.clientWidth;
    } 
    else if( document.body && document.body.clientHeight ) {
        //IE 4 compatible
        myWidth = document.body.clientWidth;
    }
    return myWidth;
}

function replaceVisibleButton (toHide, toVisible)
{
    if(document.all||document.getElementById)
    {
        toH = document.getElementById(toHide);
        toV = document.getElementById(toVisible);
        if((toH != null)&&(toV !=null))
        {
	        toH.style.display='none';
	        toV.style.display='block';
	    }
    }
}



function Sfoglia()
{
    //var MainContent = document.getElementById('ctl00_ContentPlaceHolder1_SfogliaTbl');
    var MainContent = document.getElementById('SfogliaTbl');
    MainContent.style.display = 'none';
    
    //var TblSfoglia = document.getElementById('ctl00_ContentPlaceHolder1_TblSfoglia'); 
    var TblSfoglia = document.getElementById('TblSfoglia'); 
    TblSfoglia.style.display = 'block';
    
    var FrameCell = document.getElementById('FrameCell');
   // var FrameCell = document.getElementById('ctl00_ContentPlaceHolder1_FrameCell');
    FrameCell.innerHTML="<iframe src=\"http://issuu.com/mcgyver70/docs/immobiliedintorni_16_luglio10?mode=embed\" width=\"520\" height=\"500\">" +
                            "TestIframe" +
                        "</iframe>";
    
    
//    var ContentWrapper = document.getElementById('ContentWrapper');
//    ContentWrapper.style.height = '600px';
//    ContentWrapper.style.backgroundImage = "url('./images/Home/sfondoBig.png')";
    
//    var ContentRow = document.getElementById('MainContentRow');
//    ContentRow.style.height = '404px';
}

function ChiudiRivista()
{
    var MainContent = document.getElementById('SfogliaTbl');
    //var MainContent = document.getElementById('ctl00_ContentPlaceHolder1_SfogliaTbl');//document.createElement('div'); 
    MainContent.style.display = 'block';
    
    //var TblSfoglia = document.getElementById('ctl00_ContentPlaceHolder1_TblSfoglia'); 
    var TblSfoglia = document.getElementById('TblSfoglia'); 
    TblSfoglia.style.display = 'none';
    
    var FrameCell = document.getElementById('FrameCell');
    //var FrameCell = document.getElementById('ctl00_ContentPlaceHolder1_FrameCell');//document.createElement('div');
    FrameCell.innerHTML="";
    
//    var ContentWrapper = document.getElementById('ContentWrapper');
//    ContentWrapper.style.height = '396px';
//    ContentWrapper.style.backgroundImage = "url('./images/Home/sfondo.png')";
//    
//    var ContentRow = document.getElementById('MainContentRow');
//    ContentRow.style.height = '200px';
}