	
	function submitPage ( page, change_to_page, basket_add ) {

		var warenkorb_add = page.match ( /warenkorb_add/i );
		if ( warenkorb_add ) {
			var txDamen  = document.getElementById ( "txtDAMEN" );
			var txHerren = document.getElementById ( "txtHERREN" );
			var txSale   = document.getElementById ( "txtSALE" );
			
			var wahl = "_damen";
			if ( txDamen )  wahl = "_damen";
			if ( txHerren ) wahl = "_herren";
			if ( txSale )   wahl = "_sale";
			page = "/warenkorb_add" + wahl + ".html";
			change_to_page = "/php/ms-suche2/suche2" + wahl + ".html";
		}

		var prefix = "http://";
		var domain = "www.danielhechtershop.de";

		var add_to_link = "";	
		if ( change_to_page == null ) change_to_page = "";
		if ( change_to_page != "" ) add_to_link = "&chpg=" + change_to_page;

		if ( basket_add == null ) basket_add = "";
		if ( basket_add != "" ) {
			basket_add = escape(basket_add);
			add_to_link += "&badd=" + basket_add;
			prefix = "https://";
		}

		if ( document._frm ) {
			if ( document._frm.pg ) {
				document._frm.action	 = prefix + domain + "/php/suche2/suche2.php";
				document._frm.pg.value	 = page;
				document._frm.chpg.value = change_to_page;
				document._frm.badd.value = basket_add;
				document._frm.target	 = "_top";
				document._frm.submit ();
			}
			else {
				top.location.href=prefix+domain+"/php/suche2/suche2.php?pg=" + page + add_to_link;
			}
		}
		else {
			top.location.href=prefix+domain+"/php/suche2/suche2.php?pg=" + page + add_to_link;
		}

	}

