function FindPrevious(url, p) 
	{ 
		var yearDoc = document.getElementById('NewsParagraphCustomYear'+p);
		var monthDoc = document.getElementById('NewsParagraphCustomMonth'+p);
		var yearVal = "";
		var monthVal = "";
		if(yearDoc != null && yearDoc != 'undefined') yearVal = yearDoc.value;
		if(monthDoc != null && monthDoc != 'undefined') monthVal = monthDoc.value;
		location = url + "&year=" + yearVal+ "&month=" + monthVal; 
	} 