
/*  function newWindow (enlargement,width,height) {
  
  if(enlargement.lastIndexOf("None") != -1) {alert("No image selected!");}
  else {
  enlargementWindow = window.open(enlargement, 'enlargementWin', 'toolbar=no,location=no,scrollbars=no,width='+width+',height=' +height)
  enlargementWindow.focus()
  }
}*/

  function newWindow (enlargement,width,height) {
  
  if(enlargement.lastIndexOf("None") != -1) {alert("No image selected!");}
  else {
  
  enlargementWindow = window.open(enlargement, 'enlargementWin', 'toolbar=no,location=no,scrollbars=no,width='+width+',height=' +height)
  enlargementWindow.focus()
  }
}

  function removerec (user,pass,prop_title,ID) {
  if(confirm("Are you sure you want to remove "+prop_title+" from the database?")) {
document.location="remove.cgi?"+user+"&"+pass+"&"+ID;
}
}
