var actualAccessories = "";

function displayAccessories (catId)
{
	//alert(catId);
	
	divs = document.getElementById('zubehoer').getElementsByTagName("div");
	
	for(i=0;i<divs.length;i++)
	{
		if(divs[i].getAttribute("lang"))
		{
			divs[i].style.display = "none";
			if(divs[i].getAttribute("lang") == catId)
			{
				divs[i].style.display = "block";
			}
		}
	}
	
	actualAccessories = catId;
	
}


function downloadSelected ()
{
	url = '/extentions/pdf/demo/html2ps.php?process_mode=single&URL=localhost%2Fzubehoer-export.php%3Fid%3D' + actualProductId + '%26cat%3D' + actualAccessories + '%26lang%3D' + lang + '&pixels=1024&scalepoints=1&renderimages=1&renderlinks=1&renderfields=1&media=A4&cssmedia=screen&leftmargin=15&rightmargin=15&topmargin=15&bottommargin=15&encoding=utf-8&toc-location=before&smartpagebreak=1&pslevel=3&method=fpdf&pdfversion=1.3&output=0';
	window.open(url, '_blank');
}
