//	Generates a simple pop-up window
//	10/25/2000	created by paul hightower

function pop(str, opt) {
	window.open(str,'child',opt);
	}
