function V(imgPath,height,width)
{
	var path = "/image.cfm?src=" + imgPath;
	var winProps = "height="+height+",width="+width+",resizable=yes";
	window.open(path,'viewImage',winProps); void(0);
}

function D(imgPath)
{
	window.open(imgPath,'doc','');
	void(0);
}
