function openSite()
{
    var windowWidth = screen.width;
    var windowHeight = screen.height;
    
    window.open('Home.aspx', 'sitewindow', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+windowWidth+', height='+windowHeight); 
}

function refreshPage()
{
    window.location = "Default.aspx";
}
