var newwindow = '';
function launchWindow(theURL,winName,features) {
	if (!newwindow.closed && newwindow.location) {newwindow.close();}
	newwindow=window.open(theURL,winName,features);
	if (window.focus) {newwindow.focus()}}
