//javascript functions to handle onClick and onRollover events for the products page
/*
function rOver(selMainImage,selCaption,selProductID,selProductName)
{
	var mainImgName, captionName, productIdName;
	mainImgName = selProductName + "Swatch";
	captionName = selProductName + "Caption";
	productIdName = selProductName + "PID";
	eval("document.images." + mainImgName + ".src = 'http://troveline.com/" + selMainImage + "'");
	eval("document.images." + captionName + ".src = 'http://troveline.com/" + selCaption + "'");
}

function rOut(defMainImage,defCaption,defProductID,defProductName)
{
	var mainImgName, captionName, productIdName;
	mainImgName = defProductName + "Swatch";
	captionName = defProductName + "Caption";
	productIdName = defProductName + "PID";
	eval("document.images." + mainImgName + ".src = 'http://troveline.com/" + defMainImage + "'");
	eval("document.images." + captionName + ".src = 'http://troveline.com/" + defCaption + "'");
}
*/
function clickIt(selMainImage,selCaption,selProductID,selProductName)
{
	var mainImgName, captionName, captionIdName, productIdName;
	mainImgName = selProductName + "Swatch";
	captionName = selProductName + "Caption";
	mainImgIdName = selProductName + "ImgID";
	captionIdName = selProductName + "CaptionID";
	productIdName = selProductName + "PID";
	document.getElementById(productIdName).innerHTML = '<a href="http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=14A65AC2-C05D-4D68-9640-86A762E62E93&pid=' + selProductID + '"><img src="http://troveline.com/images/wallpaper_samples/addButton.jpg" alt="Add to Cart" width="40" height="19" border="0"/></a>';
	document.getElementById(captionIdName).innerHTML = '<img src="' + selCaption + '" width="100" height="16" name="' + captionName + '"/>';
	document.getElementById(mainImgIdName).innerHTML = '<img src="' + selMainImage + '" class="swatchImage" alt="' + selProductName + ' wallpaper design" name="'+ selProductName + 'Swatch" width="150" height="150" border="0"/>';
}
