////////////////////////////////////////////////////
//pre: url to be opened in window
//post: custom window popped up to display url
////////////////////////////////////////////////////
function openWindow(url){
  window.open(url,'ImageWindow','toolbar=no,resizable=yes,scrollbars=yes,menubar=no,width=810,height=600');
}

///////////////////////////////////////////
//pre: window open
//post: window closes itself
///////////////////////////////////////////
function closeWindow(){
  window.close();
}