
// Pop up windows
function open_win (file, w, h) {
	new_win = window.open(file, 'popup', 'menubar=no,toolbar=no,resizable=no,scrollbars=yes,width='+w+',height='+h);
	new_win.focus();
	return false;
}