//****************************************************************************************************
function WK_Meld(id)
{
alert('Der von Ihnen gewählte Artikel (' + id + ') wird in den Warenkorb gelegt!');
}
//****************************************************************************************************
function open_window1()
{
if(document.forms[0].Zahlung.value == "Bankeinzug")
	{
	window1 = open("" ,"W1","width=250,height=200,screenX=1,screenY=1");
	window1.document.open();
	window1.document.write("<html><head><title>Bankverbindung</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'></script><link rel='stylesheet' type='text/css' href='styles/formate.css'></head><body bgcolor='#CCCCCC'>");
	window1.document.write("<form name='bnk' action='scripts/bankdat.php' method='post'><div align='left'><p class='swfett'>Bank:<br><input type='text' name='be_bank' size='30'><br>BLZ:<br><input type='text' name='be_blz' size='30'><br>Kto.:<br><input type='text' name='be_kto' size='30'></p></div>");
	window1.document.write("<div align='right'><input type='submit' name='OK' value='Bankdaten eintragen'></div></form></boby></html>");
	window1.document.close();
	}
}
//****************************************************************************************************
