// JavaScript Document
	function surveyUrl(linkId) { //linkId is the id needed in the anchor tags to keep the links straight
		var cPage = document.getElementsByTagName("Meta")[1].content; //grabs the 2nd Metatag's content value
		pl_value = cPage.substring(0,cPage.indexOf('|') );	// grabs the number to the left of the pipe
		var newUrl = document.getElementById(linkId);	// gets the link to the survey
		newUrl = newUrl +"&rd=0&hiddendata=SC%3D"+ pl_value; // appends the variables onto the link
		document.getElementById(linkId).href = newUrl; // sends the new URL back to the href of the original link
		return false; //stops the parent window from opening the _blank window in addition to the Survey window
}