function popup(url, target, width, height) {
	desktop = window.open(url, target, "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width="+width+",height="+height+",resizable=no");
	desktop.focus();
}

function toggle(n) {
	document.all[n].style.display = ('none' == document.all[n].style.display) ? '' : 'none';
}

function handlePopup(name, closeIt) {
	if (closeIt == 'true') {
		opener.location.reload();
		window.close();
	} else
		window.name = name;
}
