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