<!--

//Copyright Mangolab Ltd. 2008. All rights reserved.
//USES:
// - j_utils_params.js
//SUMMARY:
// - Previously used by ind_main.htm to populate the welcome message for a campaign link
//HISTORY:
// 16.10.2008 Version 2.0
// 23.10.08 Version 2.0 - <FC> - Reviewd / FB ref: CASE:1496

function GetCampaignMessage(){
	SetParameters(top);
	var StrResult='';
	var StrCaption = unescape(GetParameterValue('camcap'));
	StrCaption = GetXssSecureValue(StrCaption);
		if (StrCaption != null && StrCaption != ''){
			var StrLink = "<a href='http://www.polybags.co.uk/srch_res.htm?srch=" +
			StrCaption + "'" + "title='" + StrCaption + "'>"; 
			StrResult = "<p class='notecampaign'><strong>Searching for " + StrCaption +
			"</a>?</strong> " + StrLink + "Click here</a> to see our range...</p>";
		}	 
	return StrResult;
}
-->
