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