function submitform()
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.Form1;
				}
				else
				{
					theform = document.forms["Form1"];
				}
				theform.submit();
			}

		
function submitform1(menu, befehl, wert)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.Form1;
				}
				else
				{
					theform = document.forms["Form1"];
				}
				theform.menuform1.value = menu;
				theform.befehlform1.value = befehl;
				theform.wertform1.value = wert;
				theform.submit();
			}
			
function submitYellowpayForm()
{
    var theform;
    if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
    {
        theform = document.yellowpayForm;
    }
    else
    {
        theform = document.forms["yellowpayForm"];
    }
    theform.submit();
}
			
function submitanmeldung(menu, befehl, wert)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.FormAnmeldung;
				}
				else
				{
					theform = document.forms["FormAnmeldung"];
				}
				theform.menuanmeldung.value = menu;
				theform.befehlanmeldung.value = befehl;
				theform.wertanmeldung.value = wert;
				theform.submit();
			}
			


function submitrechts(menu, befehl, wert)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.FormRechts;
				}
				else
				{
					theform = document.forms["FormRechts"];
				}
				theform.menurechts.value = menu;
				theform.befehlrechts.value = befehl;
				theform.wertrechts.value = wert;
				theform.target = "rechts";
				theform.submit();
			}
			
function submitbestellung(menu, befehl, wert)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.FormBestellung;
				}
				else
				{
					theform = document.forms["FormBestellung"];
				}
				theform.menubestellung.value = menu;
				theform.befehlbestellung.value = befehl;
				theform.wertbestellung.value = wert;
				theform.submit();
				pageTracker._trackPageview("/funnel_G1/" + menu + ".html");
}

function submitabo(menu, befehl, wert) 
                {
                    var theform;
                    if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
                        theform = document.FormAbo;
                    }
                    else {
                        theform = document.forms["FormAbo"];
                    }
                    theform.menuabo.value = menu;
                    theform.befehlabo.value = befehl;
                    theform.wertabo.value = wert;
                    theform.submit();
                }

function submitbestellung2(menu, befehl, wert, pbUrl)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.FormBestellung;
				}
				else
				{
					theform = document.forms["FormBestellung"];
				}
				theform.menubestellung.value = menu;
				theform.befehlbestellung.value = befehl;
				theform.wertbestellung.value = wert;
				theform.action = pbUrl;
				theform.submit();
				/*
				var btn = document.getElementsByTagName("button")[0];
                if (btn) 
				{
				    btn.PostBackUrl = postBackUrl;
				}
				btn.click();
/*				theform.submit();*/
			}

function submitsuche(wert1, wert2, wert3)
			{
				var theform;
				if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1)
				{
					theform = document.FormSuche;
				}
				else
				{
					theform = document.forms["FormSuche"];
				}
				theform.wert1.value = wert1;
				theform.wert2.value = wert2;
				theform.wert3.value = wert3;
				theform.submit();
			}



