// JavaScript Document
function showsubmenu(id){
	submenu=document.getElementById('s'+id);
	for(i=1;i<=3;i++){
		if(i==id){
			submenu.style.display="block";
		} else{
			document.getElementById('s'+i).style.display="none";
		}
	}
}



function OpenWindow()
     {
     var left = (screen.width/2)-(900/2);
     var top = (screen.height/2)-(400/2);
     window.open('https://starwoodinvestor.sharefile.com/','mywindow','width=900,height=400,toolbar=yes, location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes, resizable=yes,top='+top+', left='+left) 
     }
    


     function OpenDynamicWindow()
     {
      var Path= document.getElementById('ctl00_Path').value;
      var Pathf=Path.substring(3);
      var left = (screen.width/2)-(900/2);
      var top = (screen.height/2)-(400/2);
      window.open(Pathf,'mywindow','width=900,height=400,toolbar=yes, location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes, resizable=yes,top='+top+', left='+left) 
      }
    
