function openWindow(setURL, width, height ,name) {
	var newWin = window.open(setURL, name, 'width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=no,scrollbars=yes');
	newWin.focus();
}

function closeWindow() {
	window.close();
}
