function openwin(source, id, width, height) {
	var newWin
	newWin = window.open(source, id, "scrollbars=1, toolbar=no, menubar=yes, resizable=yes, location=no, directories=no, width=" + width + ", height=" + height);
}
