﻿//used for popups, info windows, picture enlargements, etc,
function openNewWindow(url, width, height) {
	window.open(url, "_blank", "height=" + height + ",width=" + width + ",location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no");
	return false;
}
