function popUp(href, width, height) {
	var newWindow = window.open(href, "_blank", "scrollbars=yes,toolbar=no,status=no,menubar=no,resizable=yes,location=no,width=" + width + ",height=" + height);
	if (window.focus) {
		newWindow.focus();
	}
}