//PLEASE DO NOT REMOVE THIS CODE
//Pulling in variables for image name, category number and wl number...
var CatName2 = document.HomeCatForm.CatName2.value;
var CatNum2 = document.HomeCatForm.CatNum2.value;
var Count2 = document.HomeCatForm.Count2.value;
var ProdNbr2 = document.HomeProdForm.ProdNbr2.value;
var AuNbr2 = document.HomeProdForm.AuNbr2.value;

var CatName3 = document.HomeCatForm.CatName3.value;
var CatNum3 = document.HomeCatForm.CatNum3.value;
var Count3 = document.HomeCatForm.Count3.value;
var ProdNbr3 = document.HomeProdForm.ProdNbr3.value;
var AuNbr3 = document.HomeProdForm.AuNbr3.value;

var CatName4 = document.HomeCatForm.CatName4.value;
var CatNum4 = document.HomeCatForm.CatNum4.value;
var Count4 = document.HomeCatForm.Count4.value;
var ProdNbr4 = document.HomeProdForm.ProdNbr4.value;
var AuNbr4 = document.HomeProdForm.AuNbr4.value;

var MerchantRefNum = document.HomeCatForm.MerchantRefNum.value;

if(Count2 == 1)
{
	var theUrl2 = "/cgi-bin/ncommerce3/ProductDisplay?prrfnbr="+ ProdNbr2 +"&prmenbr="+ MerchantRefNum +"&aunbr="+ AuNbr2+"&topcat=Y";
}
else
{
	var theUrl2 = "/cgi-bin/ncommerce3/CategoryDisplay?cgrfnbr="+ CatNum2 +"&cgmenbr="+ MerchantRefNum;
}

if(Count3 == 1)
{
	var theUrl3 = "/cgi-bin/ncommerce3/ProductDisplay?prrfnbr="+ ProdNbr3 +"&prmenbr="+ MerchantRefNum +"&aunbr="+ AuNbr3+"&topcat=Y";
}
else
{
	var theUrl3 = "/cgi-bin/ncommerce3/CategoryDisplay?cgrfnbr="+ CatNum3 +"&cgmenbr="+ MerchantRefNum;
}

if(Count4 == 1)
{
	var theUrl4 = "/cgi-bin/ncommerce3/ProductDisplay?prrfnbr="+ ProdNbr4 +"&prmenbr="+ MerchantRefNum +"&aunbr="+ AuNbr4+"&topcat=Y";
}
else
{
	var theUrl4 = "/cgi-bin/ncommerce3/CategoryDisplay?cgrfnbr="+ CatNum4 +"&cgmenbr="+ MerchantRefNum;
}

document.write('<table border=0 cellpadding=0 cellspacing=0 bgcolor=#DAE1E9 width=100%><tr><td>');
document.write('<a href="'+ theUrl2 +'"><img src="http://pics1.truition.com/images/p2/wl/starwood07/img/home_'+ CatName2 +'.jpg" border="0"></a>');
document.write('<a href="'+ theUrl3 +'"><img src="http://pics1.truition.com/images/p2/wl/starwood07/img/home_'+ CatName3 +'.jpg" border="0"></a>');
document.write('<a href="'+ theUrl4 +'"><img src="http://pics1.truition.com/images/p2/wl/starwood07/img/home_'+ CatName4 +'.jpg" border="0"></a>');
document.write('</td></tr></table>');