function popupWindow(url,width,height,scroll) {
	var popupWindow = window.open(url,'makeNewWindow','scrollbars='+scroll+',status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=yes,height='+height+',width='+width);
	popupWindow.focus();
}