/*
function fnPrintFlashAdv(sFileURL, nWidth, nHeight,id, sFVars) {
	if (window.ActiveXObject)
		document.write("<object type=\"application/x-shockwave-flash\" id=\"" + id + "\" width=\"" + nWidth + "\" height=\""+ nHeight + "\">");
	else
		document.write("<object FlashVars=\"" + sFVars + "\" type=\"application/x-shockwave-flash\" id=\"" + id + "\" width=\"" + nWidth + "\" height=\""+ nHeight + "\" data=\"" + sFileURL + "\">");
	document.write("<param name=\"movie\" value=\"" + sFileURL + "\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<param name=\"wmode\" value=\"transparent\">");
	document.write("<param name=\"FlashVars\" value=\"" + sFVars + "\">");
	document.write("</object>");
}
*/

function setupWarenkorbByZahlart() {

	var	objForm				=	document.forms['Warenkorb'];

	if ( objForm  &&  objForm.elements['Zahlart'] ) {
		var	index				=	objForm.elements['Zahlart'].selectedIndex;
		var valueZahlart		=	objForm.elements['Zahlart'].options[index].value;
	
	//	Auskodiertes ist von .DE übernommen.
	//	if (valueZahlart == 'Bankeinzug' ) {
	//		document.getElementById( 'warenkorb_zahlart_bankeinzug' ).style.display		=	'block';
	//		document.getElementById( 'warenkorb_zahlart_kreditkarte' ).style.display	=	'none';
	//	}
	 	if ( valueZahlart == 'Kreditkarte' ) {
	//		document.getElementById( 'warenkorb_zahlart_bankeinzug' ).style.display		=	'none';
			document.getElementById( 'warenkorb_zahlart_kreditkarte' ).style.display	=	'block';
		}
		else {
	//		document.getElementById( 'warenkorb_zahlart_bankeinzug' ).style.display		=	'none';
			document.getElementById( 'warenkorb_zahlart_kreditkarte' ).style.display	=	'none';
		}
	}
}
