<!--Pop-up to show photo and other details (car_view.php)-->
var popUpWin = null;
function openPopUp(html_page) {
  popUpWin =
window.open(html_page,'popup','width=600,height=500,top=0,left=0,scrollbars,alwaysRaised,dependent');
popUpWin.focus();
}


<!--Pop-up to show details of entry selected for modification (modify.php)-->
var popUpWinFull = null;

function openPopUpFull(html_page) {
  popUpWinFull =
window.open(html_page,'popupfull','width=800,height=600,top=0,left=0,toolbar, location, scrollbars,alwaysRaised,dependent,resizable');
popUpWinFull.focus();
}

