<!--
function path3()
{
	var t1 = document.prod_group.product_group_up1_name.value;
	var t2 = document.prod_group.product_group_up2_name.value;

	if (t1.toLowerCase() == "browncor")
		t1 = "";
	if (t2.toLowerCase() == "browncor")
		t2 = "";

	if (t1 != "")
	{
		var a1 = t1.split("@@and@@");
		t1 = a1[0];
		for (var i = 1; i < a1.length; i++)
			t1 = t1 + "&" + a1[i];
	}
	if (t2 != "")
	{
		var a2 = t2.split("@@and@@");
		t2 = a2[0];
		for (var i = 1; i < a2.length; i++)
			t2 = t2 + "&" + a2[i];
	}

	var cust_info = "cust_no="+document.prod_group.cust_no.value+"&user_id="+document.prod_group.user_id.value+"&ship_no="+document.prod_group.ship_no.value;
	if (t2 != "" && document.prod_group.product_group_up2_id.value != "")
	{
		document.write("<a href='eComm?template=product_group1&"+cust_info+"&tran_id=0&prod_id="+document.prod_group.product_group_up2_id.value+"'>"+t2+"</a><font color='red'> &#62; </font>");

		if (t1 != "" && document.prod_group.product_group_up1_id.value != "")
		{
			document.write("<a href='eComm?template=product_group2&"+cust_info+"&tran_id=1&prod_id="+document.prod_group.product_group_up1_id.value+"'>"+t1+"</a><font color='red'> &#62; </font>");
		}
	}
	else if (t1 != "" && document.prod_group.product_group_up1_id.value != "")
	{
		document.write("<a href='eComm?template=product_group1&"+cust_info+"&tran_id=0&prod_id="+document.prod_group.product_group_up1_id.value+"'>"+t1+"</a><font color='red'> &#62; </font>");
	}
}
//-->
