function displayImage(url, width, height)
{
	if (! height)
		var height = 340;
	else
		var height = height + 40;
	if (! width)
		var width = 440;
	else
		var width = width + 40;
	var name = "swatchsample"
	var properties = "resizable=0,toolbar=0,location=0,scrollbars=0,height=" + height + ",width=" + width;
	open(url,name,properties)
}
