// startVM.js JavaScript Document

var MyWin;
function openWin()

{
var theURL = "http://vanmappub.vancouver.ca/web/vanmap/vanmap.htm";
var windowName = "demoWin2";
var locationBar = "no";
var theToolbar = "no";
var theDirectoryButtons = "no";
var theStatusBar = "yes";
var theMenuBar = "no";
var theScrollBars = "no";
var isResizable = "yes";

 if (screen) 
  {
//  var theWidth=screen.width-45;
 var theWidth=screen.width-15;
  var theHeight=screen.height-75;
  }
  else 
  {
  var theWidth = 760;
  var theHeight = 540;
  }


MyWin = open(theURL,windowName,"toolbar=" + theToolbar 
								+ ",location=" + locationBar
								+ ",directories=" + theDirectoryButtons 
								+ ",height=" + theHeight
								+ ",width=" + theWidth 
								+ ",status=" + theStatusBar
								+ ",menubar=" + theMenuBar
								+ ",scrollbars=" + theScrollBars
								+ ",resizable=" + isResizable
								+ ",left=0"
								+ ",top=0" 
								+ "alwaysraised"); 
}	

