/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function openPopup(url, title) {
  window.open(
    url, 
    title, 
    'width=400,height=600,scrollbars=yes'
    ); 
    
  return false;
}

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