function ProductLink(ProdID, Description, Class) {
	document.write("<a href='/Products/Default.aspx?ProdID=");
	document.write(encodeURIComponent(ProdID));
	document.write("' class='" + Class + "'>" + Description + "</a>");
}
function AddToCartLink(ProdID, Class) {
}
function rwtxtzoom(Text, ZoomImageSrc, ZIHeight, ZIWidth, Title, Caption) {
	document.write("<a href=\"javascript:popUp('/Articles/Zoom.aspx?ImageSrc=' + encodeURIComponent('" + ZoomImageSrc + "') + '&Height=" + ZIHeight + "&Width=" + ZIWidth + "&Title=' + encodeURIComponent('" + Title + "') + '&Caption=' + encodeURIComponent('" + Caption + "')," + (parseInt(ZIWidth) + 60) + "," + (parseInt(ZIHeight) + 230) + ");\">" + Text + "</a>");
}
function rwimgzoom(ImageSrc, ImgHeight, ImageWidth, ZoomImageSrc, ZIHeight, ZIWidth, Title, Caption) {
	document.write("<a href=\"javascript:popUp('/Articles/Zoom.aspx?ImageSrc=' + encodeURIComponent('" + ZoomImageSrc + "') + '&Height=" + ZIHeight + "&Width=" + ZIWidth + "&Title=' + encodeURIComponent('" + Title + "') + '&Caption=' + encodeURIComponent('" + Caption + "')," + (parseInt(ZIWidth) + 60) + "," + (parseInt(ZIHeight) + 230) + ");\">");
	document.write("<img src=" + ImageSrc + " height=" + ImgHeight + " width=" + ImageWidth + " border='0' title=" + Caption + ">");
	document.write("</a>");
}
