function popupImage(imgUrl, productName, width, height)
{
	winWidth = width + 20; winHeight = height + 25;
	var hWin = window.open("http://www.cd-reviewers.com/imageviewer.php?img=" + imgUrl + "&prodName=" + productName + "&width=" + width + "&height=" + height, "cdreviewerImage", "width=" + winWidth + ",height=" + winHeight + ",scrollbars");
	hWin.focus();
}

function highLight(obj)
{
	obj.className = "similarHighLight";
}

function unLight(obj)
{
	obj.className = "similar";
}


