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