function lgWindow(lgImg) {
  popupWin = window.open(lgImg,'open_window','menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=500, height=480')
}
function editWindow(table,id,field) {
  var editUrl = 'edit.php?table='+table+'&id='+id+'&field='+field;
  popupWin = window.open(editUrl,'edit_window','menubar=0, toolbar=0, directories=0, status=0, scrollbars=0, resizable=1, dependent, width=360, height=200')
}
function selectImageWindow(id) {
  var editUrl = 'selectImage.php?itemId='+id;
  popupWin = window.open(editUrl,'edit_Image_window','menubar=0, toolbar=0, directories=0, status=0, scrollbars=1, resizable=1, dependent, width=800, height=600')
}
function updateWindow(itemId) {
  var editUrl = 'update.php?itemId='+itemId;
  popupWin = window.open(editUrl,'update_window','menubar=0, toolbar=0, directories=0, status=0, scrollbars=1, resizable=1, dependent, width=980, height=800')
}

