function openUp() {
  window.open("temp_page1.htm", "", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no")
}

function OpenWindow() { 
  // 'new' button
  var newwindow = window.open("car1.htm","1981","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=800,height=550");
  newwindow.focus();
  newwindow.moveTo(60,60);
  }

