// JavaScript Document


function subwindow(url) {
var popurl = url;
NewWindow = window.open(popurl, "NewWindow","status = no, toolbar = no, scrollbars = no, location = no, left = 200, top = 200, width = 500, height = 425")
}



function open_win(url_add)
   {
   window.open(url_add,'New Window','width=500, height=375');
   }
   
   
   <!-- ;
 var newwindow = ''
 function popitup(url) {
 if (newwindow.location && !newwindow.closed) {
     newwindow.location.href = url; 
     newwindow.focus(); } 
 else { 
     newwindow=window.open(url,'htmlname','status = no, toolbar = no, scrollbars = no, location = no, left = 200, top = 200, width = 500, height = 425');
 	  newwindow.document.write("<img src='"+url+"'>");
	  newwindow.document.write("<FORM><INPUT TYPE='BUTTON' VALUE='Close Window' onClick='window.close()'></FORM>");
 	} 
 }

function tidy() {
 if (newwindow.location && !newwindow.closed) { 
    newwindow.close(); } 
 }
