function OpenWindow (Address, w, h) {
	w = w+20;
	h = h+20;
	Window1 = window.open(Address, "_blank", "width=" + w + ",height=" + h + ",scrollbars=no,dependent=no,location=no,menubar=no,resizable=no,status=no,toolbar=no");
	Window1.focus();
}
