
// Window Opening Function
function popup(url, width, height) {
	width += 20;
	height += 25;
	features = "width=" + width + ",height=" + height + "directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0";
	window.open(url, "_blank", features);
}