function openWindow(theURL,winName) { 
  window.open(theURL,winName,'scrollbars=yes,resizable=yes,width=950,height=800');
}

function close_window() {
    window.close();
}
