<!--
function openResize(width, height, targetUrl) {
	var opts = "width=" + width + ",height=" + height;
	if (window.open) {
		opts = opts + ",menubar=no,status=no,resizable=no";
		}
	else {
		opts = opts + ",menubar=yes,status=no,resizable=no";
		}
	var w = window.open(targetUrl, "Colors", opts);
}
//-->

