function popupWindow(URL, Width, Height) {
	window.open(URL, "newWin", "top=25, left=25, resizable=yes,scrollbars=yes,width=" + Width + ",height=" + Height);
}

