function open_win(url) { 
	nw = window.open(url, null, 'width=270, height=400, menubar=no, toolbar=no, location=no, resizable=no, scrollbars=yes');
	nw.focus();
}

