
//this function opens a new pop_up window 
function openWin(url) {
  newWindow=window.open(url,"def","width=700,height=435")
  }
  


//this function closes the openned window.  
function closeWindow() {
  window.close()
}  