";
$rep_alt=array('�','�','�','�','�','�');
$rep_neu=array('Ae','ae','Ue','ue','Oe','oe');
if($key AND !$_GET[$key] AND $key!='Bestellen' AND !$_GET['detail']){
$key=str_replace($rep_alt,$rep_neu,$key);
if(file_exists($base_pfad."ihtml/".$key.".php")){
include($base_pfad."ihtml/".$key.".php");
}else{
include($base_pfad."ihtml/Error.php");
}
}
elseif($_GET[$key] AND $key!='Bestellen' AND !$_GET['detail']){
include($base_pfad."php/vorschau.php");
}
elseif($_GET['detail'])
include($base_pfad."php/artikel.php");
elseif($_GET['Bestellen']){
switch(trim($_GET['Bestellen'])){
case 'BestellungErstellen':
if($_POST['intern']=='Bestellung erstellen')
$textURL=$base_pfad."order/order_02.php";
elseif($_POST['intern']=='Bestellung senden')
$textURL=$base_pfad."order/send.php";
else
$textURL=$base_pfad."order/order_01.php";
break;
case 'Warenkorb':
$textURL=$base_pfad."order/korb_01.php";
break;
case 'AGB':
$textURL=$base_pfad."order/agb.html";
break;
case 'Hilfe':
$textURL=$base_pfad."order/Hilfe.php";
break;
default: $textURL=$base_pfad."order/Hilfe.php";
}
include($textURL);
}
else
include($base_pfad."ihtml/wc.php");
?>