<!--
var w = window;
function openWin(URL) {
	self.window.name="main"
	w = window.open('', 'subwin', 'width=400,height=150,scrollbars,,resizable=yes');
	if (w != null) {
		if (w.opener == null) {
			w.opener = self;
		}
	w.location.href = URL;
	w.focus();
	}
	return(false);
}
// -->