function antragausdrucken(btntype)
{
	if (btntype == 2)
	 {
		newWin = window.open("","Fenster1");
		document.getElementById('form1').target="Fenster1";
		document.getElementById('form1').action =  document.getElementById('form1').action+"?printpage=1&printnow=1&ta=1&f1=000000&f2=ffffff&s1=ffffff&s2=000000";
		document.getElementById('form1').submit();
	 }
	else
	 {
		var tmpstr = document.getElementById('form1').action;
		document.getElementById('form1').target="";
		tmpstr = tmpstr.replace(/\?printpage=1\&printnow=1\&ta=1\&f1=000000\&f2=ffffff\&s1=ffffff\&s2=000000/g, "");
		document.getElementById('form1').action = tmpstr;
	 }
}