// JavaScript Document



function Popupwindow1(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



function closepopup()
{
 if(false == my_window.closed) 
 {
    my_window.close ();
 }
 else
 {
    alert('Window already closed!');
 }
}
