// JavaScript Document
function open_window(url, target, width, height){
		var win = window.open(url, target, "width=" + width + ",height=" + height + ",status=yes, scrollbars=yes, resizable=yes")
		win.focus()
		}
