// JavaScript Document
function openWin(url) {
	newwindow = window.open(url, "", "height=562, width=765, menubar=0, toolbar=0, scrollbars=0");
	if (window.focus) {newwindow.focus()}
	return false;
}

function closeWin() {
	close();
	}
