function createLinkList(id,name,numb,webLink,picLink)
				 {
				 var brandTable = document.getElementById("brand_table");
				 var tableRows = brandTable.getElementsByTagName("tr");
				 var tableCell = tableRows[id].getElementsByTagName('td');
				 if (tableCell[0].lastChild == null || tableCell[0].lastChild.nodeName != 'UL')
				 		{
						var z = tableRows.length;
						for ( var x=0; x<z; x++)
								{
								var testCell = tableRows[x].getElementsByTagName('td');
								if (testCell[0].lastChild != null)
									 {
									 if (testCell[0].lastChild.nodeName == 'UL')
									 		{
									 		testCell[0].removeChild(testCell[0].lastChild);
									 		}
									 }
								}
						var ulElement = document.createElement('UL');
				 		var liBrandPage = document.createElement('LI');
						var liBrandPageAnchor = document.createElement('A');
						liBrandPageAnchor.setAttribute('HREF',webLink);
						liBrandPageAnchor.setAttribute('TARGET','_BLANK');
				 		liBrandPageAnchor.innerHTML ='&#8250; '+ name+'´s webbplats';
				 		var liPicPage = document.createElement('LI');
						/*var liPicPageAnchor = document.createElement('A');
						liPicPageAnchor.setAttribute('HREF',picLink);
						liPicPageAnchor.setAttribute('TARGET','_BLANK');
				 		liPicPageAnchor.innerHTML ='&#8250; Bilder från '+name+'´s vårkollektion';
						liPicPage.appendChild(liPicPageAnchor);*/
						liPicPage.innerHTML = '<a href="'+picLink+'" target="_blank">&#8250; Bilder från '+name+'´s h&ouml;st & vinterkollektion</a>';
						liBrandPage.innerHTML = '<a href="'+webLink+'" target="_blank">&#8250; '+ name+'´s webbplats</a>';
						/*liBrandPage.appendChild(liBrandPageAnchor);*/
				 		ulElement.appendChild(liBrandPage);
						if (numb == 2)
							 {
							 ulElement.appendChild(liPicPage);
							 }
				 		
				 		tableCell[0].appendChild(ulElement);
						}
				 else if (tableCell[0].lastChild.nodeName == 'UL')
				 			{
							tableCell[0].removeChild(tableCell[0].lastChild);
							}
				 }
