function editWarenkorb(datenblatt,modell)
{
	if(document.getElementById('PDFvalue').value != 1)
	{
		document.getElementById('PDFvalue').value = 1;
		document.images.PDFicon.src = '/img/icons/PDF_check_1.gif';
		holer_ajax('pdfmappe', 'inc/pdfmappe.php?datenblatt='+datenblatt+'&modell='+modell+'&id='+modell+'&status=1');
	} else {
		document.getElementById('PDFvalue').value = 0;
		document.images.PDFicon.src = '/img/icons/PDF_check_0.gif';
		holer_ajax('pdfmappe', 'inc/pdfmappe.php?datenblatt='+datenblatt+'&modell='+modell+'&id='+modell+'&status=0');
	}
}

function delWarenkorb(datenblatt,nr)
{
	document.getElementById("PDFicon"+nr).src = '/img/icons/PDF_check_0.gif';
	document.getElementById("PDFdiv"+nr).style.display = 'none';
	holer_ajax('pdfmappe', 'inc/pdfmappe.php?datenblatt='+datenblatt+'&status=0');
}


function reloadCaptcha() 
{
   var now = new Date();
   if (document.images) 
   {
	   document.images.captPic.src = '/captcha/captcha.php?' + now.getTime();
   }
}