
   function openWindow(theURL,winName,features) {
   	var newWindow;
	newWindow = window.open(theURL,winName,features); 
	newWindow.focus();
   }
 
   

   function closeWindow() {
    close();
   }


 

