function win_popup(URL) {
	popup_window = window.open(URL,'','width=440,height=375,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');
    if (window.focus) {
    	popup_window.focus()
    }
    return false; 
}