var newWindow = null;

function closeWin(){
  if (newWindow != null) {
    if(!newWindow.closed)
	newWindow.close();
  }
}

function interactiveMap(page) {
  newWindow=window.open(page,'mapquest','toolbar=1,scrollbars=1,location=1,status=1,menubar=1,directories=0,resizable=1,width=800,height=700,left=50,top=50');
  newWindow.focus();
}

function smallMap(page) {
  newWindow=window.open(page,'smallmap','toolbar=1,scrollbars=1,location=1,status=1,menubar=1,directories=0,resizable=1,width=520,height=440,left=50,top=50');
  newWindow.focus();
}

function bigMap(page) {
  newWindow=window.open(page,'bigmap','toolbar=1,scrollbars=1,location=1,status=1,menubar=1,directories=0,resizable=1,width=832,height=682,left=50,top=50');
  newWindow.focus();
}

function gallery(page) {
  newWindow=window.open(page,'gallery','toolbar=0,scrollbars=1,location=0,status=0,menubar=0,directories=0,resizable=0,width=800,height=440,left=50,top=50');
  newWindow.focus();
}

function floorPlan(page) {
  newWindow=window.open(page,'floorplan','toolbar=0,scrollbars=1,location=0,status=0,menubar=0,directories=0,resizable=0,width=550,height=700,left=50,top=50');
  newWindow.focus();
}