function setList(theList) 
{
	switch(theList) 
	{
		case 1 :
		{
			document.quoteForm.url.value="/profollow/articleOne.php";
			break;
		}
		
		case 2 : 
		{
			document.quoteForm.url.value="/profollow/articleTwo.php";
			break;
		}
		
		case 3 : 
		{
			document.quoteForm.url.value="/profollow/articleThree.php";
			break;
		}
		
		case 4 : 
		{
			document.quoteForm.url.value="/profollow/articleFour.php";
			break;
		}
		
		case 5 : 
		{
			document.quoteForm.url.value="/profollow/articleFive.php";
			break;
		}
		
		case 6 : 
		{
			document.quoteForm.url.value="/profollow/articleSix.php";
			break;
		}
	}
}