Index: /ipk/source.sh4/titanskins_tobayer01/CONTROL/postinst
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/CONTROL/postinst	(revision 23269)
+++ /ipk/source.sh4/titanskins_tobayer01/CONTROL/postinst	(revision 23270)
@@ -1,14 +1,32 @@
 #!/bin/sh
-TMP=/tmp/.titanskin
-echo "successfully installed"
 
-echo "now you can choose the new skin...."
-if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ]; then
-	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
-	FREE=`expr $SPACE - 100`
-	echo new freespace size $FREE kb
+releaseversion=22775
+plugin_short="tobayer01"
+plugin_type="skin"
+plugin_target="/var/usr/local/share/titan/skin"
+
+plugin_dir="$plugin_target/$plugin_short"
+plugin="$plugin_short $plugin_type"
+
+imageversion=`cat /etc/version | cut -d "_" -f2 | sed 's/M//'`;
+
+
+### MAIN ###
+
+sync
+SPACE=`getfreespace $plugin_target`
+FREE=`expr $SPACE - 100`
+echo
+echo "New free space: ${FREE}kB"
+
+
+if [ "$imageversion" -gt "$releaseversion" ]; then
+	echo "Successfully installed $plugin (non-release version)."
+	# ==> rm skin_release.xml
+	rm $plugin_dir/skin_release.xml
 else
-	echo "syncing disk"
-	sync
+	echo "Successfully installed $plugin (release version)."
+	# ==> mv skin_release.xml skin.xml"
+	mv $plugin_dir/skin_release.xml $plugin_dir/skin.xml
 fi
 
Index: /ipk/source.sh4/titanskins_tobayer01/CONTROL/postrm
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/CONTROL/postrm	(revision 23269)
+++ /ipk/source.sh4/titanskins_tobayer01/CONTROL/postrm	(revision 23270)
@@ -1,16 +1,22 @@
 #!/bin/sh
-TMP=/tmp/.skin
 
-PLUGINDIR=/var/usr/local/share/titan/skin/tobayer01
-rm -r /var/usr/local/share/titan/skin/tobayer01
+plugin_short="tobayer01"
+plugin_type="skin"
+plugin_target="/var/usr/local/share/titan/skin"
 
-echo "successfully removed"
-if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ]; then
-	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
-	FREE=`expr $SPACE - 100`
-	echo new freespace size $FREE kb
-else
-	echo "syncing disk"
-	sync
-fi
+plugin_dir="$plugin_target/$plugin_short"
+plugin="$plugin_short $plugin_type"
+
+
+### MAIN ###
+
+rm -rf $plugin_dir
+
+sync
+SPACE=`getfreespace $plugin_target`
+FREE=`expr $SPACE - 100`
+echo "New free space: ${FREE}kB"
+echo
+echo "Successfully removed $plugin."
+
 exit 0
Index: /ipk/source.sh4/titanskins_tobayer01/CONTROL/preinst
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/CONTROL/preinst	(revision 23269)
+++ /ipk/source.sh4/titanskins_tobayer01/CONTROL/preinst	(revision 23270)
@@ -1,51 +1,76 @@
 #!/bin/sh
-#
-TMP=/tmp/.titanskin
-echo "syncing disk"
-sync
 
-model=`cat /etc/model`
-echo""
-echo "Checking your Boxtype...."
-echo "Some Plugins will not work correctly on your $model!"
-echo ""
-if [ "$model" = "" ]; then
-	echo "Sorry! This Plugin is not available for your $model because it will not work correctly!!!"
+plugin_size=2300
+plugin_short="tobayer01"
+plugin_type="skin"
+plugin_target="/var/usr/local/share/titan/skin"
+
+plugin_dir="$plugin_target/$plugin_short"
+plugin="$plugin_short $plugin_type"
+
+
+### MAIN ###
+
+# Is this check for anything useful???
+#model=`cat /etc/model`
+#echo -n "Checking box type..."
+#if [ "$model" = "" ]; then
+#	echo "......[FAILED]"
+#	echo
+#	echo "Sorry, $plugin is not available for the $model!"
+#	echo "Aborting installation..."
+#	exit 1
+#else
+#	echo "......[OK]"
+#fi
+
+
+echo -n "Checking installation directory..."
+if [ ! -d $plugin_target ]; then
+	echo "......[FAILED]"
+	echo
+	echo "'$plugin_target' not found!"
 	echo "Aborting installation..."
 	exit 1
 else
-	echo "Boxtype: $model OK"
+#	echo "......[OK]"
+	echo
 fi
 
-if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ]; then
-	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
-	FREE=`expr $SPACE - 100`
-	SIZE=1050
-	echo "checking freespace"
-	echo package size $SIZE kb
-	echo freespace size $FREE kb
-	if  [ "$FREE" -lt "$SIZE" ]; then
-		echo "sorry no freespace left on device"
-		exit 1
-	else
-		echo ok		
-	fi
+
+sync
+SPACE=`getfreespace $plugin_target`
+FREE=`expr $SPACE - 100`
+echo -n "Checking free space (${plugin_size}/${FREE}kB)..."
+if [ "$FREE" -lt "$plugin_size" ]; then
+	echo "......[FAILED]"
+	echo
+	echo "Not enough free space in $plugin_target!"
+	echo "Aborting installation..."
+	exit 1
 else
-	echo "syncing disk"
-	sync
+#	echo "......[OK]"
+	echo
 fi
 
-buildgroup=`cat /etc/.buildgroup`
-echo "checking OS"	 
-if  [ `cat /etc/motd | grep $buildgroup | grep M | grep rev | wc -l` -eq 0 ]; then 	 	 
-	echo --------------------------- 	 	 
-	echo DONT USE this IPK Package!! 	 	 
-	echo --- 	 	 
-	echo Only for $buildgroup Image!! 	 	 
-	echo --------------------------- 	 	 
-	exit 1 	 	 
-fi
-  
-echo "installing tobayer01 skin ..."
+
+# Is this check for anything useful???
+#buildgroup=`cat /etc/.buildgroup`
+#echo -n "Checking image type..."
+#if [ `cat /etc/version | grep $buildgroup | wc -l` -eq 0 ]; then
+#	echo "......[FAILED]"
+#	echo
+#	echo "Sorry, $plugin is not available for this image type!"
+#	echo "Aborting installation..."
+#	exit 1
+#else
+#	echo "......[OK]"
+#fi
+
+
+rm -rf $plugin_dir
+
+#echo -n "Installing $plugin..."
+#echo "......[OK]"
 
 exit 0
Index: /ipk/source.sh4/titanskins_tobayer01/CONTROL/prerm
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/CONTROL/prerm	(revision 23269)
+++ /ipk/source.sh4/titanskins_tobayer01/CONTROL/prerm	(revision 23270)
@@ -1,12 +1,18 @@
 #!/bin/sh
-TMP=/tmp/.titanskin
-if [ `df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1 | wc -l` -eq 1 ]; then
-	SPACE=`df | grep /dev/mtdblock | grep var | sed 's/ \+/ /g' | cut -d ' ' -f4 | head -n1`
-	FREE=`expr $SPACE - 100`
-	echo new freespace size $FREE kb
-else
-	echo "syncing disk"
-	sync
-fi
-echo "removing tobayer01 skin"
+
+plugin_short="tobayer01"
+plugin_type="skin"
+plugin_target="/var/usr/local/share/titan/skin"
+
+plugin_dir="$plugin_target/$plugin_short"
+plugin="$plugin_short $plugin_type"
+
+
+### MAIN ###
+
+sync
+SPACE=`getfreespace $plugin_target`
+FREE=`expr $SPACE - 100`
+echo "Old free space: ${FREE}kB"
+
 exit 0
Index: /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin.xml
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin.xml	(revision 23269)
+++ /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin.xml	(revision 23270)
@@ -1,2 +1,4 @@
+### skin.xml for non-release images
+
 <screen name="autores" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="50" posy="650" width="120" height="40" bgcol="bgcol_grey" halign="center" valign="middle" bordercol="bordercol" bordersize="1">
 </screen>
Index: /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin_release.xml
===================================================================
--- /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin_release.xml	(revision 23270)
+++ /ipk/source.sh4/titanskins_tobayer01/var/usr/local/share/titan/skin/tobayer01/skin_release.xml	(revision 23270)
@@ -0,0 +1,2018 @@
+### skin.xml for release images
+
+<screen name="autores" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="50" posy="650" width="120" height="40" bgcol="bgcol_grey" halign="center" valign="middle" bordercol="bordercol" bordersize="1">
+</screen>
+
+
+<screen name="logo" posx="0" posy="0" width="1280" height="720" picwidth="1280" picheight="720">
+</screen>
+
+
+<screen name="numinput" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="150" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+		<node name="input" type="inputboxnum" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="10" posy="10" width="480" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="450" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="satfinder" title="Satfinder" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+		<node name="signal" progresscol="progresscol" bordersize="2" bordercol="progress_border" func="getsignalline" param1="%d" posx="center" posy="10" width="600" height="30">
+		<node name="signaltext" fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getsignal" param1="Signal: %d%%" posx="center" posy="10" width="600" height="30">
+		<node name="snr"    progresscol="progresscol" bordersize="2" bordercol="progress_border" func="getsnrline"    param1="%d" posx="center" posy="50" width="600" height="30">
+		<node name="snrtext"    fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getsnr"    param1="SNR: %d%%"    posx="center" posy="50" width="600" height="30">
+		<node name="bertext"    fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getber"    param1="BER: %d"      posx="center" posy="90" width="600" height="30">
+		<node name="unctext"    fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getunc"    param1="UNC: %d"      posx="center" posy="130" width="600" height="30">
+	<node name="b1" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="possetup" title="Positioner Setup" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="10" width="880" height="60" type="textbox" wrap="yes" text="Before you can see Signal/SNR/Ber you must zap to a channel of the satellite you are searching.">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="80" width="880" height="-180" bordercol="fontcol">
+		<node name="move" text="Move" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="finemove" text="Fine move" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="limit" text="Limit" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="goto0" text="Goto startpos" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="storagepos" text="Storage position" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="signal" progresscol="progresscol" bordersize="2" bordercol="progress_border" func="getsignalline" param1="%d" posx="center" posy="300" width="600" height="30">
+	<node name="signaltext" fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getsignal" param1="Signal: %d%%" posx="center" posy="300" width="600" height="30">
+	<node name="snr"    progresscol="progresscol" bordersize="2" bordercol="progress_border" func="getsnrline"    param1="%d" posx="center" posy="340" width="600" height="30">
+	<node name="snrtext"    fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getsnr"    param1="SNR: %d%%"    posx="center" posy="340" width="600" height="30">
+	<node name="bertext"    fontcol="fontcol" fontsize="25" valign="middle" halign="center" func="getber"    param1="BER: %d"      posx="center" posy="380" width="600" height="30">
+	<node name="b1" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="60"  posy="0" width="185" height="40">
+	<node name="b2" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="255" posy="0" width="195" height="40">
+	<node name="b3" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="460" posy="0" width="195" height="40">
+	<node name="b4" picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="655" posy="0" width="185" height="40">
+	<node name="b5" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b6" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="gmultiepg" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="680" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+#	<node name="time" func="gettime" param1="%d.%m. (%a) - %R" halign="center" valign="middle" charspace="-1" fontsize="18" posx="0" posy="20" width="240" height="20" bordersize="1" bordercol="fontcol">
+	<node name="epgdate"        font="font1" charspace="-1" fontsize="18" fontcol="fontcol"  halign="center" valign="middle"              posx="0" posy="20" width="240" height="20" bordercol="fontcol" bordersize="1">
+	<node name="timeline"       font="font1" charspace="-1" fontsize="18" fontcol="fontcol"  valign="top" scrollbar="no"                  posx="240" posy="20" width="970" height="30" bordercol="fontcol">
+	<node name="channellistbox" font="font1" charspace="-1" fontsize="24" fontcol="fontcol"  valign="top" scrollbar="no"  type="listbox"  posx="10"  posy="50" width="230" height="-174">
+	<node name="listbox"        font="font1" charspace="-1" fontsize="18" fontcol="fontcol2" valign="top" scrollbar="yes" type="grid"     posx="240" posy="49" width="970" height="-174" bordercol="fontcol" progresscol="rec_progress">
+	<node name="epgdesc" type="textbox" wrap="yes" fontsize="24" fontcol="fontcol" posx="10" posy="475" width="1190" height="-45" bordersize="1" bordercol="fontcol" bordertype="1">
+	<node name="b1" picmem="skin/key_red.png"    valign="middle" charspace="-1" fontsize="25" posx="10"  posy="0" width="190" height="40" textposx="25" text="Timer">
+	<node name="b2" picmem="skin/key_green.png"  valign="middle" charspace="-1" fontsize="25" posx="210" posy="0" width="140" height="40" textposx="25" text="EPG">
+	<node name="b3" picmem="skin/key_yellow.png" valign="middle" charspace="-1" fontsize="25" posx="360" posy="0" width="210" height="40" textposx="25" text="Single EPG">
+	<node name="b4" picmem="skin/key_blue.png"   valign="middle" charspace="-1" fontsize="25" posx="580" posy="0" width="190" height="40" textposx="25" text="Multi EPG">
+	<node name="b5" picmem="skin/key_prev2.png"  valign="middle" posx="810" posy="0" width="40" height="40">
+	<node name="b6" picmem="skin/key_next2.png"  valign="middle" posx="860" posy="0" width="40" height="40">
+	<node name="b7" picmem="skin/key_+P-.png"    valign="middle" posx="910" posy="0" width="40" height="40">
+	<node name="b8" picmem="skin/key_0.png"      valign="middle" charspace="-1" fontsize="25" posx="1000" posy="0" width="200" height="40" textposx="40" text="EPG Search">
+</screen>
+
+
+<screen name="moduleconfig" title="Module Config" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png" halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="RESET" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="190" height="40">
+	<node name="b4" text="MENU" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="260" posy="0" width="110" height="40">
+	<node name="b5" text="CAID" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="380" posy="0" width="100" height="40">
+	<node name="b6" text="Channel" picmem="skin/key_blue.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="490" posy="0" width="120" height="40">
+	<node name="b7" text="Settings" picmem="skin/key_menu.png" textposx="50" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="620" posy="0" width="220" height="40">
+</screen>
+
+
+<screen name="scconfig" title="SmartCard Reader" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png" halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="RESET" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="190" height="40">
+</screen>
+
+
+<screen name="scan" title="Scan" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="700" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="progress" progresscol="fontcol2" bordercol="fontcol2" bordersize="1" posx="10" posy="10" width="676" height="35" bgcol="bgcol_grey">
+	<node name="satname" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="center" valign="middle" posx="10" posy="10" width="680" height="40">
+	<node name="tpcount"    font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="10"  posy="70"  width="300" height="40">
+	<node name="foundtv"    font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="360" posy="70"  width="300" height="40">
+	<node name="foundradio" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="10"  posy="110" width="300" height="40">
+	<node name="founddata"  font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="360" posy="110" width="300" height="40">
+	<node name="foundblind" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="10"  posy="150" width="300" height="40">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="200" width="676" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10" posy="0" width="40" height="40">
+	<node name="b2" text="ADD ONE" picmem="skin/key_red.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="187" height="40">
+	<node name="b3" text="ADD ALL" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="257" posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="manualscan" title="Scan Config" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="scantype" text="Type of Scan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="tuner" text="Tuner" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="sat" text="Satellite" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="id" text="ID" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="system" text="System" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="frequency" text="Frequency" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="inversion" text="Inversion" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="symbolrate" text="Symbolrate" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="polarization" text="Polarization" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="fec" text="FEC" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="modulation" text="Modulation" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rolloff" text="Rolloff" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="pilot" text="Pilot" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="hp" text="Coderate HP" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="lp" text="Coderate LP" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="bandwidth" text="Bandwidth" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="transmission" text="Transmission" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="guardinterval" text="Guardinterval" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="hierarchy" text="Hierarchy" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="networkscan" text="Network Scan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="clear" text="Clear before scan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="onlyfree" text="Only free scan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="blindscan" text="Blindscan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="changename" text="Change Channelname" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="SCAN" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="190" height="40">
+	<node name="b4" text="CHANGE" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="260" posy="0" width="190" height="40">
+	<node name="b5" text="TRANSPONDER" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="460" posy="0" width="250" height="40">
+</screen>
+
+
+<screen name="screensaver" width="100%" height="100%" bgcol="-2">
+	<node name="textsaver" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" width="1000" height="35">
+	<node name="picsaver">
+</screen>
+
+
+<screen name="webdir">
+	<node name="filelistpath">
+	<node name="filelist" type="filelist">
+</screen>
+
+
+<screen name="textinput" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="bgcol_grey" posx="center" posy="center" valign="bottom" width="500" height="120" bgcol="bgcol_blue" titlebgcol="fontcol" bordersize="2" bordercol="fontcol">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="input" type="inputbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="center" valign="middle" posx="10" posy="10" width="476" height="-50" bgcol="light_blue">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="446" posy="0" width="40"  height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40"  height="40">
+	<node name="b3" picmem="skin/key_text.png" halign="center" valign="middle" posx="230"  posy="0" width="40"  height="40">
+</screen>
+
+
+## todo ##
+<screen valign=bottom titlealign=center name=playlist hspace=5 vspace=5 fontcol=fontcol font="font1" charspace="-1" fontsize=30 title="PlayList - select your playlist !" posx=center posy=center width=40% height=40% bordercol=bordercol bordersize=2 bgcol=bgcol>
+<node font="font1" charspace="-1" fontsize=30 bordercol=bordercol scrollbar=auto type=listbox name=listbox posy=1 width=100% height=-35>
+<node name=b1 text="OK" halign=center valign=center bordercol=okcol bordersize=6 bordertype=2 posx=20 posy=0 width=150 height=39/>
+<node name=b2 text="EXIT" halign=center valign=center bordercol=exitcol bordersize=6 bordertype=2 posx=180 posy=0 width=150 height=39/>
+<node name=b3 text="ADD" halign=center valign=center bordercol=green bordersize=6 bordertype=2 posx=500 posy=0 width=150 height=39/>
+<node name=b4 text="DEL" halign=center valign=center bordercol=red bordersize=6 bordertype=2 posx=340 posy=0 width=150 height=39/>
+</screen>
+
+<screen valign=bottom titlealign=center name=playlist_main hspace=50 vspace=50 fontcol=fontcol font="font1" charspace="-1" fontsize=30 title="PlayList" posx=center posy=center width=100% height=95% bordercol=bordercol bordersize=2 bgcol=-1>
+<node font="font1" charspace="-1" fontsize=30 bordercol=bordercol scrollbar=auto type=listbox name=listbox posy=1 width=100% height=-35>
+<node name=b1 text="OK" halign=center valign=center bordercol=okcol bordersize=6 bordertype=2 posx=20 posy=0 width=150 height=39/>
+<node name=b2 text="EXIT" halign=center valign=center bordercol=exitcol bordersize=6 bordertype=2 posx=180 posy=0 width=150 height=39/>
+<node name=b3 text="ADD" halign=center valign=center bordercol=green bordersize=6 bordertype=2 posx=500 posy=0 width=150 height=39/>
+<node name=b4 text="DEL" halign=center valign=center bordercol=red bordersize=6 bordertype=2 posx=340 posy=0 width=150 height=39/>
+</screen>
+## todo ##
+
+
+<screen name="download" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="500" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="file" posx="center" posy="70" width="100%" height="20" halign="center">
+	<node name="progress" progresscol="fontcol2" bordercol="fontcol2" bordersize="1" posx="center" posy="100" width="400" height="20" bgcol="bgcol_grey">
+	<node name="maxkb" posx="center" posy="140" width="100%" height="20" halign="center">
+	<node name="aktkb" posx="center" posy="170" width="100%" height="20" halign="center">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="harddisk_main" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="playpolicy" fontcol="fontcol" font="font1" charspace="-1" fontsize="30" posx="center" posy="center" width="450" height="50" bgcol="bgcol_grey" halign="center" valign="middle" bordercol="bordercol" bordersize="1">
+</screen>
+
+
+<screen name="interfacelist" title="Network Interfacelist" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" text="EDIT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="190" height="40">
+	<node name="b3" text="HOSTNAME" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="260" posy="0" width="200" height="40">
+</screen>
+
+
+<screen name="rectimerext" title="Record Timer" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="560" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="recfreesize" func="getrecfreesize" progresscol="rec_progress" bgcol="mvmode_bgcol" posx="690" posy="2" width="200" height="25">
+	<node name="recfreesizetext" func="getrecfreesizetext" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" valign="middle" halign="center" posx="690" posy="2" width="200" height="25">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="30" width="880" height="-50" bordercol="fontcol">
+		<node name="name" text="Name" type="inputbox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="justplay" text="Type" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="repeate" text="Repeate" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="repeatetype" text="Repeate type" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="day" text="Day" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="mon" text="Monday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="tue" text="Tuesday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="wed" text="Wednesday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="thur" text="Thursday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="fri" text="Friday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="sat" text="Saturday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="sun" text="Sunday" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="begin" text="Begin" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="end" text="End" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="channel" text="Channel" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="path" text="Record path" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="after" text="Aktion after" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="pincode" text="Pin Code" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_text.png" halign="center" valign="middle" posx="60"  posy="0" width="40" height="40">
+	<node name="b4" picmem="skin/key_red.png"  valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="110" posy="0" width="300" height="40" textposx="25" text="Create Path">
+</screen>
+
+
+<screen name="rectimer" title="Record Timer" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="560" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="recfreesize" func="getrecfreesize" progresscol="rec_progress" bgcol="mvmode_bgcol" posx="690" posy="2" width="200" height="25">
+	<node name="recfreesizetext" func="getrecfreesizetext" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" valign="middle" halign="center" posx="690" posy="2" width="200" height="25">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="30" width="880" height="-50" bordercol="fontcol">
+	<node name="b5" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b1" text="DEL" picmem="skin/key_red.png"           textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="180" height="40">
+	<node name="b2" text="ADD" picmem="skin/key_green.png"         textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="250" posy="0" width="200" height="40">
+	<node name="b3" text="STOP/START" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="460" posy="0" width="220" height="40">
+	<node name="b4" text="LOG" picmem="skin/key_blue.png"          textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="690" posy="0" width="150" height="40">
+	<node name="b6" picmem="skin/key_ok.png" halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="playinfobarpic" func="getplaypic" param1="skin" posy="55" posx="55" halign="center" valign="top" width="80" height="60" bgcol="fontcol">
+	<node name="text" text="" func="getplaytext" fontsize="20" fontcol="bgcol_blue" halign="center" valign="bottom" posx="0" posy="0" width="100%" height="100%">
+</screen>
+
+
+<screen name="playinfobarcover" param1="skin" posx="905" posy="375" width="275" height="155" transparent="1">
+	<node name="cover" halign="right" valign="bottom" posx="0" posy="0" width="275" height="155" picwidth="1" picheight="1">
+</screen>
+
+
+<screen name="playinfobar" posx="center" posy="540" width="100%" height="150">
+	<node posx="0" posy="0"  width="100%" height="50"  bgcol="bgcol_blue">
+	<node posx="0" posy="50" width="100%" height="100" bgcol="bgcol_grey">
+	<node name="time" func="gettime" param1="%R" halign="left" valign="middle" fontsize="24" fontcol="fontcol" posx="80" posy="0" width="100" height="28">
+	<node name="date" func="gettime" param1="%a %d. %b" halign="left" valign="middle" fontsize="18" fontcol="fontcol" posx="80" posy="28" width="100" height="22">
+	<node name="title" text="unknown" halign="left" valign="middle" fontsize="28" fontcol="fontcol" posx="200" posy="0" width="880" height="50">
+	<node name="playbufferstatus" func="getbufferstatus" type="progressbar" progresscol="green" bordercol="progress_border" bordersize="1" bgcol="fontcol" posx="1090" posy="20" width="90" height="10">
+	<node name="progress" progresscol="light_blue" bordercol="progress_border" bordersize="1" bgcol="fontcol" posx="200" posy="70" width="880" height="10">
+	<node name="pos"     text="---" halign="left"   valign="middle" fontsize="24" fontcol="fontcol" posx="100"  posy="50" width="100" height="50">
+	<node name="reverse" text="---" halign="center" valign="middle" fontsize="24" fontcol="fontcol" posx="590"  posy="90" width="100" height="50">
+	<node name="len"     text="---" halign="right"  valign="middle" fontsize="24" fontcol="fontcol" posx="1080" posy="50" width="100" height="50">
+</screen>
+
+
+<screen name="recordduration" text="Minutes:" type="inputboxnum" fontcol="fontcol" font="font1" charspace="-1" fontsize="36" posx="center" posy="center" width="250" height="80" bgcol="bgcol_grey" hspace="5" bordercol="bordercol" bordersize="1">
+<node name="b1" text="Next EPG Time" picmem="skin/key_red_30x30.png" textposx="40" valign="middle" fontsize="25" posy="bottom" width="100%" height="30">
+</screen>
+
+
+<screen name="standby">
+</screen>
+
+
+<screen name="network" title="Network Adapter Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="type"       text="type"       type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="ipaddresse" text="ipaddresse" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="netmask"    text="netmask"    type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="gateway"    text="gateway"    type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="dnsserver1" text="dnsserver 1" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="dnsserver2" text="dnsserver 2" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="network_test" title="Network Adapter Test" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="textbox1" type="textbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="50" posy="60" width="350" height="-40">
+		<node name="i1" text="LAN"      parent="textbox1" halign="left" valign="middle" posx="0" posy="0"  width="100%" height="40">
+		<node name="i2" text="internet" parent="textbox1" halign="left" valign="middle" posx="0" posy="40" width="100%" height="40">
+	<node name="textbox2" type="textbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="420" posy="60" width="220" height="-40">
+		<node name="lan"      text="???" parent="textbox2" halign="right" valign="middle" posx="0" posy="0"  width="100%" height="40">
+		<node name="internet" text="???" parent="textbox2" halign="right" valign="middle" posx="0" posy="40" width="100%" height="40">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" text="Test" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="180" height="40">
+</screen>
+
+
+<screen name="pin" title="PIN Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="pincodemenu" text="Pin Code menu" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="pincode" text="Pin Code Channel" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="channelprotect" text="Protect Channel" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="ageprotect" text="Age Protect" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="protecttime" text="Protect Channel Freetime (min)" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="menuprotect" text="Protect Menu" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="MENUPROTECT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="250" height="40">
+</screen>
+
+
+<screen name="menuprotect" title="Menu Protect" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="pincheck" text="PIN:" type="inputboxnum" mask="0000" fontcol="fontcol" font="font1" charspace="-1" fontsize="36" posx="center" posy="center" width="300" height="50" bgcol="bgcol_grey" valign="middle" hspace="5" bordercol="bordercol" bordersize="1">
+</screen>
+
+
+<screen name="menulist" title="Menulist" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="recordlist" title="Recordlist" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="videomode" title="VideoMode Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="510" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="680" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="3dsettings" title="3D-Mode Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="510" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="680" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="aspectsettings" title="VideoMode Aspect Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="510" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="680" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="resolutionsettings" title="VideoMode Resolution Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="510" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="680" height="-10" bordercol="fontcol">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="singleepg" title="Single EPG" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="680" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="channelname" charspace="2" fontsize="28" halign="center" valign="middle" posx="center" posy="10" width="700" height="40">
+	<node name="listbox" type="listbox" param1="%d.%m. (%a)  %R  " scrollbar="auto" charspace="-1" fontsize="27" fontsize2="27" fontcol="fontcol" fontcol2="fontcol2" progresscol="rec_progress" posx="10" posy="60" width="1190" height="-230" bordercol="fontcol">
+	<node posx="10" posy="420" width="1190" height="1" bgcol="fontcol">
+	<node name="epgdesc" type="textbox" wrap="yes" charspace="-1" fontsize="26" posx="10" posy="430" width="1190" height="-50">
+	<node name="b1" picmem="skin/key_red.png"    valign="middle" charspace="-1" fontsize="25" posx="10"  posy="0" width="200" height="40" textposx="25" text="Timer">
+	<node name="b2" picmem="skin/key_green.png"  valign="middle" charspace="-1" fontsize="25" posx="220" posy="0" width="170" height="40" textposx="25" text="EPG">
+	<node name="b3" picmem="skin/key_yellow.png" valign="middle" charspace="-1" fontsize="25" posx="400" posy="0" width="200" height="40" textposx="25" text="Multi EPG">
+	<node name="b4" picmem="skin/key_blue.png"   valign="middle" charspace="-1" fontsize="25" posx="610" posy="0" width="250" height="40" textposx="25" text="Graph. EPG">
+	<node name="b8" picmem="skin/key_0.png"      valign="middle" charspace="-1" fontsize="25" posx="1000" posy="0" width="200" height="40" textposx="40" text="EPG Search">
+#	<node name="time" func="gettime"  param1="%d.%m. (%a) - %R" halign="right"   valign="middle" charspace="-1" fontsize="25" posx="955" posy="0" width="245" height="40">
+</screen>
+
+
+<screen name="multiepg" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="680" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" charspace="-1" fontsize="27" fontcol="fontcol2" fontsize2="27" fontcol2="fontcol" param1="%d.%m. (%a)  %R" param2="-%R" progresscol="rec_progress" posx="10" posy="10" width="1190" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_red.png"    valign="middle" charspace="-1" fontsize="25" posx="10"  posy="0" width="200" height="40" textposx="25" text="Timer">
+	<node name="b2" picmem="skin/key_green.png"  valign="middle" charspace="-1" fontsize="25" posx="220" posy="0" width="170" height="40" textposx="25" text="EPG">
+	<node name="b3" picmem="skin/key_yellow.png" valign="middle" charspace="-1" fontsize="25" posx="400" posy="0" width="200" height="40" textposx="25" text="Single EPG">
+	<node name="b4" picmem="skin/key_blue.png"   valign="middle" charspace="-1" fontsize="25" posx="610" posy="0" width="250" height="40" textposx="25" text="Graph. EPG">
+	<node name="b5" picmem="skin/key_prev2.png"  valign="middle" posx="865" posy="0" width="40" height="40">
+	<node name="b6" picmem="skin/key_next2.png"  valign="middle" posx="910" posy="0" width="40" height="40">
+	<node name="b7" picmem="skin/key_+P-.png"    valign="middle" posx="960" posy="0" width="40" height="40">
+	<node name="b8" picmem="skin/key_0.png"      valign="middle" charspace="-1" fontsize="25" posx="1010" posy="0" width="190" height="40" textposx="40" text="EPG Search">
+#	<node name="time" func="gettime" param1="%d.%m. (%a) - %R" halign="right" valign="middle" charspace="-1" fontsize="25" posx="955" posy="0" width="245" height="40">
+</screen>
+
+
+<screen name="videosettings" title="Video Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="brightness" text="Brightness" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+		<node deaktivcol="deaktivcol" parent="listbox" height="20">
+		<node name="contrast" text="Contrast" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+		<node deaktivcol="deaktivcol" parent="listbox" height="20">
+		<node name="tint" text="Tint" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+#<node deaktivcol="#1" parent="listbox" height="20">
+#<node name="saturation" text="Saturation" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="DEFAULT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="skinselect" title="Skin Selection" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="540" height="-40" bordercol="fontcol">
+	<node name="png" halign="middle" valign="middle" posx="560" posy="110" width="220" height="200">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="epg" title="Program Info" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1000" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="80" bgcol="bgcol_blue">
+	<node name="epgstart" param1="%H:%M" halign="left" valign="middle" charspace="-1" fontsize="28" posx="10" posy="10" width="100" height="35">
+	<node name="channelname" halign="right" valign="middle" charspace="2" fontsize="28" posx="120" posy="10" width="870" height="35">
+	<node name="rectimeline" type="multiprogressbar" progresscol="rec_progress" posx="10" posy="46" width="980" height="8">
+	<node name="epgend" param1="%H:%M" halign="left" valign="middle" charspace="-1" fontsize="28" posx="10" posy="55" width="100" height="35">
+	<node name="epgtitle" halign="left" valign="middle" charspace="-1" fontsize="28" posx="120" posy="55" width="870" height="35">
+	<node name="epgsubtitle" halign="left" valign="middle" charspace="-1" fontsize="28" fontcol="fontcol2" posx="120" posy="90" width="870" height="40">
+	<node name="epgdesc" type="textbox" scrollbar="auto" wrap="yes" charspace="-1" fontsize="28" posx="10" posy="140" width="980" height="-80" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_red.png"    valign="middle" charspace="-1" fontsize="25" posx="10"  posy="0" width="180" height="40" textposx="25" text="Timer">
+	<node name="b2" picmem="skin/key_green.png"  valign="middle" charspace="-1" fontsize="25" posx="200" posy="0" width="200" height="40" textposx="25" text="Single EPG">
+	<node name="b3" picmem="skin/key_yellow.png" valign="middle" charspace="-1" fontsize="25" posx="410" posy="0" width="180" height="40" textposx="25" text="Multi EPG">
+	<node name="b4" picmem="skin/key_blue.png"   valign="middle" charspace="-1" fontsize="25" posx="600" posy="0" width="220" height="40" textposx="25" text="Graph. EPG">
+	<node name="b5" text="Single (EPG)" halign="center" valign="middle" bordercol="fontcol" bordersize="6" bordertype="2" charspace="-1" fontsize="24" posx="830" posy="0" width="160" height="40">
+	<node name="b6" picmem="skin/key_prev.png" valign="middle" posx="10" posy="485" width="40" height="40">
+	<node name="b7" picmem="skin/key_next.png" valign="middle" posx="60" posy="485" width="40" height="40">
+	<node name="b8" picmem="skin/key_0.png"    valign="middle" charspace="-1" fontsize="25" posx="790" posy="485" width="200" height="40" textposx="40" text="EPG Search">
+# no need
+	<node hidden="yes" name="channelnr">
+	<node hidden="yes" name="epgtimeremaining">
+#
+</screen>
+
+
+<screen name="powerofftimerscreen" title="Poweroff Timer" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="minutes" text="Minutes" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="fixshutdowntime" text="Fix Shutdown Time" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="mode" text="StandBy Mode" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"    halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"  halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_red.png"   text="Cancel Shutdown" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="340" height="40">
+	<node name="b4" picmem="skin/key_green.png" text="Use EPG Endtime" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="410" posy="0" width="300" height="40">
+	<node name="b5" picmem="skin/key_prev2.png" halign="center" valign="middle" posx="750" posy="0" width="40" height="40">
+	<node name="b6" picmem="skin/key_next2.png" halign="center" valign="middle" posx="800" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="tunerreceptiondvbc" title="Tuner Reception" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="tunerreceptiondvbt" title="Tuner Reception" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="subtitle" title="Subtitle" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="300" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="480" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="bouquetlist" title="Bouquet List" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="400" height="500" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="380" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="350" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="listedit" title="Channel Edit" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="380" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="480" height="-40" bordercol="fontcol">
+		<node name="cpmode" text="copy service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rmmode" text="remove service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="movemode" text="move service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="protectmode" text="protect service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="addmode" text="add service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="editmode" text="rename service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="sortmode" text="sort service" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="setstartchannel" text="set startchannel" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="delstartchannel" text="del startchannel" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="450" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="channelbynr" fontcol="fontcol" font="font1" charspace="-1" fontsize="36" posx="center" posy="center" width="100" height="50" bgcol="bgcol_grey" halign="center" valign="middle" bordercol="bordercol" bordersize="1">
+</screen>
+
+
+<screen name="audiotrack" title="Audio Tracks" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="300" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="480" height="-40" bordercol="fontcol">
+	<node name="b1" text="Subtitle" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="0" width="250" height="40">
+</screen>
+
+
+<screen name="linkedchannel" title="Subservices" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1100" height="510" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol2" posx="10" posy="10" width="1080" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="ownpos" title="Own Position" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="latitude" text="Latitude" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="latpos" text="" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="longitude" text="Longitude" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="longpos" text="" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="diseqcscreen" title="Diseqc Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="diseqcmode" text="DiSEqC Mode" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="toneburst" text="Tone Burst" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="committedcmd" text="Committed command" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="diseqcrepeat" text="Diseqc repeats" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="cmdorder" text="Diseqc Command Order" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="uncommittedcmd" text="Uncommitted Diseqc command" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rotorpos" text="Rotor Position" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="lnbscreen" title="LNB Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="voltagemode" text="Voltage Mode" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="tonemode" text="Tone Mode" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="loftype" text="LOF" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="lofl" text="LOF/L" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="lofh" text="LOF/H" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="threshold" text="Threshold" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="satcr" text="SATCR Number" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="satcrfrequ1" text="SATCR Frequency" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="satcrfrequ2" text="SATCR Frequency" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="UNICABLE" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="tunerreceptiondvbs" title="Tuner Reception" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+#<node name="longitude" text="Longitude" type="inputbox" parent="listbox" valign="middle" posx="0" bordercol="bordercol" bordersize="2" width="100%" height="25">
+#<node name="east_west" text="East / West" type="choicebox" parent="listbox" valign="middle" posx="0" bordercol="bordercol" bordersize="2" width="100%" height="25">
+#<node name="latitude" text="Latitude" type="inputbox" parent="listbox" valign="middle" posx="0" bordercol="bordercol" bordersize="2" width="100%" height="25">
+#<node name="north_south" text="North / South" type="choicebox" parent="listbox" valign="middle" posx="0" bordercol="bordercol" bordersize="2" width="100%" height="25">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="EDIT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="tunerconfig" title="Tuner Configuration" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"     halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png"   halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="EDIT"    picmem="skin/key_red.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="190" height="40">
+	<node name="b4" text="OWN POS" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="260" posy="0" width="250" height="40">
+	<node name="b5" picmem="skin/key_prev.png" valign="middle" posx="750" posy="0" width="40" height="40">
+	<node name="b6" picmem="skin/key_next.png" valign="middle" posx="800" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="dir" title="Select Path" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="680" height="35">
+	<node name="filelist" type="filelist" scrollbar="auto" textposx="40" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" bordercol="fontcol" posx="10" posy="55" width="680" height="-50" picmem="skin/folder.png">
+	<node name="b1" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="160" height="40">
+	<node name="b2" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="180" posy="0" width="160" height="40">
+	<node name="b3" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="350" posy="0" width="160" height="40">
+	<node name="b4" picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="520" posy="0" width="170" height="40">
+# no need
+<node hidden="yes" name="label">
+#
+</screen>
+
+
+<screen name="dirlabel" title="Select Path" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="920" height="35">
+	<node name="recfreesize" func="getrecfreesize" progresscol="rec_progress" bgcol="mvmode_bgcol" posx="940" posy="15" width="200" height="25">
+	<node name="recfreesizetext" func="getrecfreesizetext" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" valign="middle" halign="center" posx="940" posy="15" width="200" height="25">
+	<node name="filelist" type="filelist" scrollbar="auto" textposx="40" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" bordercol="fontcol" posx="10" posy="55" width="1130" height="-220" picmem="skin/folder.png">
+	<node name="line" posx="center" posy="395" width="1130" height="1" bgcol="bgcol_grey" bgcol2="fontcol" gradient="leftmiddle">
+	<node name="thumb" halign="center" valign="middle" posx="10" posy="405" width="275" height="155" picwidth="1" picheight="1">
+	<node name="label" type="textbox" wrap="yes" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="295" posy="405" width="845" height="-50">
+	<node name="b5" picmem="skin/key_info.png"   halign="center" valign="middle" posx="10" posy="0" width="40" height="40">
+	<node name="b1" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="180" height="40">
+	<node name="b2" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="250" posy="0" width="190" height="40">
+	<node name="b3" picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="450" posy="0" width="190" height="40">
+	<node name="b4" picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="650" posy="0" width="190" height="40">
+</screen>
+
+
+<screen name="mute" posx="55" posy="55" width="45" height="45" picmem="icons/mute.png">
+</screen>
+
+
+<screen name="spinner" halign="center" valign="middle" posx="55" posy="55" width="80" height="80" bgcol="-2">
+	<node name="spinner1" hidden="yes" picmem="spinner/wait1.png" width="100%" height="100%">
+	<node name="spinner2" hidden="yes" picmem="spinner/wait2.png" width="100%" height="100%">
+	<node name="spinner3" hidden="yes" picmem="spinner/wait3.png" width="100%" height="100%">
+	<node name="spinner4" hidden="yes" picmem="spinner/wait4.png" width="100%" height="100%">
+	<node name="spinner5" hidden="yes" picmem="spinner/wait5.png" width="100%" height="100%">
+	<node name="spinner6" hidden="yes" picmem="spinner/wait6.png" width="100%" height="100%">
+	<node name="spinner7" hidden="yes" picmem="spinner/wait7.png" width="100%" height="100%">
+</screen>
+
+
+<screen name="volume" posx="55" posy="55" width="200" height="20">
+	<node name="volumebar" progresscol="progresscol" bordercol="progress_border" bordersize="2" bgcol="fontcol" width="100%" height="100%">
+</screen>
+
+
+<screen name="infobar" posx="center" posy="540" width="100%" height="150">
+	<node posx="0" posy="0"  width="100%" height="50"  bgcol="bgcol_blue">
+	<node posx="0" posy="50" width="100%" height="100" bgcol="bgcol_grey">
+
+	<node name="time" func="gettime" param1="%R" halign="center" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="65" posy="0" width="110" height="28">
+	<node name="date" func="gettime" param1="%a %d. %b" halign="center" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="fontcol" posx="65" posy="28" width="110" height="22">
+	<node name="epgline" func="getepgakttimeline" progresscol="progresscol" bordercol="progress_border" bordersize="1" bgcol="fontcol" posx="200" posy="20" width="150" height="10">
+
+	<node func="getchannelnr"      text="" halign="center" valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="360" posy="0" width="60"  height="50">
+	<node func="getaktchannelname" text="" halign="left"   valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="430" posy="0" width="350" height="50">
+
+	<node func="getreccount" halign="right" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="dark_red" posx="785" posy="0" width="30" height="50">
+	<node func="getrec"        param1="icons" halign="center" valign="middle" posx="820"  posy="0" width="50" height="50">
+	<node func="getcrypt"      param1="icons" halign="center" valign="middle" posx="870"  posy="0" width="50" height="50">
+	<node func="getsoundtype"  param1="icons" halign="center" valign="middle" posx="920"  posy="0" width="50" height="50">
+###	<node func="gethbbtv"      param1="icons" halign="center" valign="middle" posx="970"  posy="0" width="50" height="50">
+	<node func="getteletext"   param1="icons" halign="center" valign="middle" posx="1020" posy="0" width="50" height="50">
+	<node func="getsdhd"       param1="icons" halign="center" valign="middle" posx="1070" posy="0" width="50" height="50">
+	<node func="getaspectmode" param1="icons" halign="center" valign="middle" posx="1120" posy="0" width="50" height="50">
+	<node func="getresolution" param1="icons" halign="center" valign="middle" posx="1170" posy="0" width="50" height="50">
+
+	<node func="getpicon" posx="70" posy="56" width="100" height="60" picwidth="100" picheight="60">
+
+	<node func="getepgaktstart" param1="%H:%M"           halign="left"  valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="200" posy="50" width="80"  height="33">
+	<node func="getepgakttitle"                          halign="left"  valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="280" posy="50" width="670" height="33">
+	<node func="getepgakttimeremaining" param1="+%d min" halign="right" valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="950" posy="50" width="120" height="33">
+
+	<node func="getepgnextstart" param1="%H:%M"          halign="left"  valign="middle" font="font1" charspace="-1" fontsize="26" fontcol="fontcol_info" posx="200" posy="83" width="80"  height="33">
+	<node func="getepgnexttitle"                         halign="left"  valign="middle" font="font1" charspace="-1" fontsize="26" fontcol="fontcol_info" posx="280" posy="83" width="670" height="33">
+	<node func="getepgnexttimeremaining" param1="%d min" halign="right" valign="middle" font="font1" charspace="-1" fontsize="26" fontcol="fontcol_info" posx="950" posy="83" width="120" height="33">
+
+	<node text="Signal:" halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1110" posy="50"  width="60" height="20">
+	<node text="SNR:"    halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1110" posy="70"  width="60" height="20">
+	<node text="BER:"    halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1110" posy="90"  width="60" height="20">
+	<node text="UNC:"    halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1110" posy="110" width="60" height="20">
+	<node text="Tuner:"  halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1110" posy="130" width="60" height="20">
+	<node func="getsignal" param1="%d %%" halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1170" posy="50"  width="50" height="20">
+	<node func="getsnr"    param1="%d %%" halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1170" posy="70"  width="50" height="20">
+	<node func="getber"    param1="%d"    halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1170" posy="90"  width="50" height="20">
+	<node func="getunc"    param1="%d"    halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1170" posy="110" width="50" height="20">
+	<node func="getakttuner"              halign="left" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="1170" posy="130" width="50" height="20">
+
+	<node func="getprovidername" param1="%d" halign="center" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="10" posy="125" width="220" height="25">
+	<node func="getsatname"      param1="%d" halign="right"  valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="830" posy="125" width="240" height="25">
+
+	<node text="Video"       picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="200" posy="125" width="100" height="25">
+	<node text="Audio/Subt." picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="18" fontcol="light_blue" posx="310" posy="125" width="180" height="25">
+	<node name="sleep" func="getpowerofftime" param1="sleep in %d min" font="font1" charspace="-1" fontsize="18" fontcol="orange" valign="middle" posx="500" posy="125" width="180" height="25">
+</screen>
+
+
+<screen name="infobar2" posx="center" posy="540" hspace="65" vspace="5" width="100%" height="150" bgcol="bgcol_blue">
+	<node name="epgdesc" func="getepgaktdesc" type="textbox" scrollbar="no" wrap="yes" font="font1" charspace="0" fontsize="26" fontcol="fontcol" posx="0" posy="0" width="100%" height="100%">
+</screen>
+
+
+<screen name="channellist" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="680" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node posx="749" posy="10" width="1" height="-50" bgcol="fontcol">
+	<node posx="760" posy="460" width="440" height="1" bgcol="fontcol">
+	<node name="channeltimeline" progresscol="fontcol" bordercol="fontcol" bordersize="1" posx="10" posy="10" width="80" height="10" hidden="yes">
+	<node name="listbox" type="listbox" scrollbar="auto" fontsize="27" fontcol="fontcol2" fontsize2="27" fontcol2="fontcol" posx="10" posy="10" width="740" height="-50" bordercol="fontcol">
+		<node name="epgstart" func="getepgmarkedstart" param1="%R" charspace="-1" fontsize="28" posx="760" posy="10" width="100" height="35">
+		<node name="time" func="gettime" param1="%R" halign="center" valign="middle" charspace="-1" fontsize="28" posx="930" posy="10" width="100" height="35">
+		<node name="epgend" func="getepgmarkedend" param1="%R" halign="right" charspace="-1" fontsize="28" fontcol="light_blue" posx="1100" posy="10" width="100" height="35">
+		<node name="epgline" func="getepgmarkedtimeline" progresscol="progresscol" bgcol="fontcol" bordercol="progress_border" bordersize="1" posx="760" posy="50" width="440" height="10">
+		<node name="epg" func="getepgmarkeddesc" type="textbox" wrap="yes" charspace="-1" fontsize="24" posx="760" posy="65" width="440" height="-190">
+		<node name="epg" func="getepgmarkedlist" param1="5" type="textbox" wrap="no" charspace="-1" fontsize="24" fontcol="light_blue" valign="middle" posx="760" posy="465" width="440" height="-50">
+	<node name="b1"  picmem="skin/key_ok.png"     valign="middle" posx="970" posy="0" width="40" height="40">
+	<node name="b2"  picmem="skin/key_exit.png"   valign="middle" posx="1020" posy="0" width="40" height="40">
+	<node name="b3"  picmem="skin/key_red.png"    valign="middle" charspace="-1" fontsize="24" posx="10"  posy="0" width="100" height="40" textposx="25" text="ALL">
+	<node name="b4"  picmem="skin/key_green.png"  valign="middle" charspace="-1" fontsize="24" posx="120" posy="0" width="160" height="40" textposx="25" text="SAT">
+	<node name="b5"  picmem="skin/key_yellow.png" valign="middle" charspace="-1" fontsize="24" posx="290" posy="0" width="160" height="40" textposx="25" text="Prov">
+	<node name="b6"  picmem="skin/key_blue.png"   valign="middle" charspace="-1" fontsize="24" posx="460" posy="0" width="160" height="40" textposx="25" text="Fav">
+	<node name="b7"  picmem="skin/key_text.png"   halign="center" valign="middle" posx="630" posy="0" width="40" height="40">
+	<node name="b15" picmem="skin/key_0.png"      valign="middle" charspace="-1" fontsize="24" posx="680" posy="0" width="180" height="40" textposx="40" text="Short EPG">
+	<node name="b8"  picmem="skin/key_info.png"   valign="middle" charspace="-1" fontsize="24" posx="1070" posy="0" width="130" height="40" textposx="50" text="Radio">
+	<node name="b9"  picmem="skin/key_epg.png"    valign="middle" posx="870" posy="0" width="40" height="40">
+	<node name="b10" picmem="skin/key_menu.png"   valign="middle" posx="920" posy="0" width="40" height="40">
+	<node name="b11" picmem="skin/key_menu.png"   valign="middle" posx="920" posy="0" width="40" height="40">
+<node hidden="yes" name="b12"> ###picmem="skin/key_up_down_40x40.png"
+<node hidden="yes" name="b13"> ###picmem="skin/key_left_right_40x40.png"
+<node hidden="yes" name="b14"> ###picmem="skin/key_ch_up_down_70x40.png"
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="vfdisplay" title="VFDisplay" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="brightness" text="Brightness" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+		<node deaktivcol="deaktivcol" parent="listbox" height="20">
+		<node name="standby" text="Standby Brightness" type="progressbar" parent="listbox" halign="center" valign="middle" progresscol="progresscol2" width="100%" height="35">
+		<node deaktivcol="deaktivcol" parent="listbox" height="20">
+		<node name="vfdnotstandby" text="Show in VFD"  type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="vfdstandby" text="Show in Standby" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="vfdrecord" text="Behavior at recording" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="at7000frontrun" text="LED - brightness running" type="choicebox" valign="middle" width="100%" height="35" hidden="yes">
+		<node parent="listbox" name="at7000frontsleep" text="LED - brightness standby" type="choicebox" valign="middle" width="100%" height="35" hidden="yes">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="epgsettings" title="EPG Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="epgpath" text="EPG Path" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgdays" text="How many days" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgdel" text="Delete EPG after read" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgsave" text="EPG Save Mode" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgscreen" text="Show EPG screen (EPG button)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgfreespace" text="Epgfreespace (KB)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epglistmode" text="Epg List Mode" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgrefresh" text="Epg Refresh Time" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgbutton" text="EPG button on EPG Screen" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgzoom" text="Graphic EPG Zoom" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epgpicon" text="Graphic EPG Picon" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="delepgbeforescan" text="Del EPG before scan" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="epg_afterevent" text="After EPG Scan" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mhwepg" text="MHW EPG" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mhw2epg" text="MHW2 EPG" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="opentv" text="OpenTV EPG" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="EPG Reset" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="60"  posy="0" width="185" height="40">
+	<node name="b4" text="EDIT"      picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="255" posy="0" width="195" height="40">
+	<node name="b5" text="ScanList"  picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="460" posy="0" width="195" height="40">
+	<node name="b6" text="LOG"       picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="655" posy="0" width="185" height="40">
+</screen>
+
+
+<screen name="recordpath" title="Record Path settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="moviepath" text="Moviepath" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="timerpath" text="Timer Record Path" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="recpath" text="Record Path" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="timeshiftpath" text="Timeshift Path" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="streampath" text="Stream Path" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="EDIT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="250" height="40">
+</screen>
+
+
+<screen name="plugin" title="Plugins" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="RELOAD" picmem="skin/key_blue.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="330" posy="0" width="250" height="40">
+	<node name="b4" text="UNLOAD" picmem="skin/key_red.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="250" height="40">
+</screen>
+
+
+<screen name="timezone" title="Timezone" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="skinadjust" posx="center" posy="center" width="100%" height="100%" valign="bottom" bgcol="fontcol" bordersize="5" bordercol="bgcol_blue">
+	<node name="skinadj" title="Skin Adjust" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node parent="skinadj" posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" parent="skinadj" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="fontsizeadjust" text="Fontsize adjust in pixel" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="listboxselecttype" text="Listbox Select" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="osdtransparent" text="OSD Transparency" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="leftoffset" text="OSD Left Overscan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rightoffset" text="OSD Right Overscan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="topoffset" text="OSD Top Overscan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="bottomoffset" text="OSD Bottom Overscan" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="piconpath" text="Piconpath" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="showrecfreesize" text="Show HDD freesize" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="listboxselect" text="Listbox Select Color" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   parent="skinadj" halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" parent="skinadj" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="httpdsettings" title="HTTP Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="httpdstart" text="Start HTTPD" type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="user"       text="User"        type="inputbox"    parent="listbox" valign="middle" width="100%" height="35">
+		<node name="password"   text="Password"    type="inputbox"    parent="listbox" valign="middle" width="100%" height="35">
+		<node name="httpdport"  text="HTTPD Port"  type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="webifip"    text="IP for Stream" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="streamport" text="Stream Port" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rguidstart" text="Start RGUID" type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rguidport"  text="RGUID Port"  type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_text.png" halign="left"  valign="middle" posx="430" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="adjust" title="Adjust" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="volbartimeout" text="Volumebar Timeout" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="infobarsleep" text="Infobar Sleep" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="infobartimeout" text="Infobar Timeout" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="secondinfobar" text="Second Infobar" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="virtualzap" text="Virtualzap Timeout" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="spinnerspeed" text="Spinnerspeed" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="spinnertime" text="Spinnertime" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="hangtime" text="Hangtime" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="fastzap" text="Fastzap" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="nozapclear" text="Don't clear TV on zap (only with fastzap)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="faststop" text="Faststop" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="dirsort" text="Dirsort" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="poweraktion" text="Power aktion" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="fasttextrender" text="Fast Text Render" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recsplitsize" text="Record Split Size" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recforerun" text="Record Forerun (min)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recoverrun" text="Record Overrun (min)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="def_rectimer_after" text="Set action after rec" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skip13" text="Skip 1/3" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skip46" text="Skip 4/6" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skip79" text="Skip 7/9" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="playertype" text="Player for .ts" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="autochangechannelname" text="Change Channelname auto." type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="showchanneltimeline" text="Show Timeline in Channellist" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="screenanim" text="Animated Screens" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="screenanimspeed" text="Animated Speed" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="channellistview" text="Channellist view" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="showlastpos" text="Show last pos Question" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recsync" text="Resync Recording immediately" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recordnamefmt" text="Recording name" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="newsletter" text="Newsletter" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="showhiddenfiles" text="Show hidden files" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="expertmodus" text="Expert Modus" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="infobarprogram" text="Show infobar on program change" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="crosscontrol" text="Use cross control for fast zapping and vol" type="choicebox" valign="middle" width="100%" height="35" fontsize="24">
+		<node parent="listbox" name="emucontrol" text="Deactivate Crypt Support on Media Playback" type="choicebox" valign="middle" width="100%" height="35" fontsize="24">
+		<node parent="listbox" name="choiceminitv" text="Deactivate MiniTV" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="usecec" text="Activate CEC" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="playerbuffersize" text="Playbackbuffer Size" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="playerbufferseektime" text="Time to wait after seek for fill buffer" type="choicebox" valign="middle" width="100%" height="35" fontsize="24">
+		<node parent="listbox" name="sataswitch" text="SATA Connector" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="moduleadjust" title="Module Config" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="nocamsg" text="Show Modules" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="camwait" text="Wait for cam ready" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="checkcamdecrypt" text="Autocheck cam can decrypt" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="caskipprivat" text="Skip privat CA descriptor" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="casendallcaids" text="Send all CAID to modules" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="extmoduldetect" text="Ext. Modul detect (needs reboot)" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="timeshiftsettings" title="Timeshift Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="timeshifttype" text="Timeshifttype" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="deltimeshift" text="After Timeshift" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="asktimeshift" text="Ask on channel switch" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="timeshiftnumkeys" text="Use numeric keys" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="screensaveradjust" title="Screensaver Adjust" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="screensaver" text="screensaver" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="screensaver_delay" text="screensaver delay" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="screensaver_interval" text="screensaver interval" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="screensaver_type" text="screensaver type" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="screensaver_background_color" text="screensaver background" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="screensaver_pic" text="screensaver pic" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+<node name="filelist" hidden="yes" type="filelist">
+</screen>
+
+
+<screen name="avsettings" title="A/V Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="resolution" text="Resolution (default)" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="aktresolution" text="Resolution (current)" type="choicebox" deaktivcol="deaktivcol" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="autoresolution" text="Auto resolution" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" hidden="yes" name="autoressd" text="--- SD resolution" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" hidden="yes" name="autorests" text="--- Time to switch" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="policy" text="Policy" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="aspect" text="Aspect" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="colformat" text="Color Format" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="colformatscart" text="Color Format Scart" type="choicebox" deaktivcol="deaktivcol" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="audiosource" text="Audio Source" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="ac3default" text="AC3 default" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="ac3mode" text="AC3 Mode" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="audiodelaybitstream" text="Audio delay" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="volautochangevalue" text="Inc. AC3 Audio in %" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mode3d" text="3D Mode" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="stepmute" text="Two step mute" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="autosubtitle" text="Automatic start last subtitle" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="timermenu" title="Records and EPG" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node parent="listbox" type="menu" name="shortepg" text="EPG SHORT VIEW" picmem="skin/shortepg.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+		<node parent="listbox" type="menu" name="singleepg" text="Single EPG" picmem="skin/singleepg.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+		<node parent="listbox" type="menu" name="multiepg" text="Multi EPG" picmem="skin/multiepg.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+		<node parent="listbox" type="menu" name="gmultiepg" text="Graphic EPG" picmem="skin/gmultiepg.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+		<node parent="listbox" type="menu" name="epgsearch" text="EPG Search" picmem="skin/epgsearch.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+		<node parent="listbox" type="menu" name="timer" text="Records" picmem="skin/timer.png" textposx="120" valign="middle" width="100%" height="50" hspace="5">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="mainmenu" title="Main Menu" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="softcam" text="Softcam Panel" picmem="skin/softcam.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="timermenu" text="Records and EPG ..." picmem="skin/timer.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+#<node type="menu" name="scartrecorder" text="Scart-Recorder" picmem="skin/scartrecorder.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="mediacenter" text="Media Center" picmem="skin/media_center.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="mediaplayer" text="Media Player" picmem="skin/media_center.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensionsmenu" text="Extensions..." picmem="skin/extensions.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system" text="System..." picmem="skin/system.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="settings" text="Settings..." picmem="skin/settings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="information" text="Information..." picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="standby" text="Standby / Poweroff..." picmem="skin/standby.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="extensionsmenu" title="Extensions" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="plugins" text="Plugins" picmem="skin/plugins.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="feed" text="Change Feed" picmem="skin/feed.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensions_tpkupgrade" text="TPK upgrade (online)" picmem="skin/tmp_tpk_install.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensions_tpkinstall" text="TPK install (online)" picmem="skin/online_tpk_install.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensions_tmptpkinstall" text="TPK tmp (tmp)" picmem="skin/tmp_tpk_install.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensions_mediatpkinstall" text="TPK media (media)" picmem="skin/media_tpk_install.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="extensions_tpkremove" text="TPK remove" picmem="skin/tmp_tpk_remove.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="systemupdatemenu" title="System Update" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="system_update_flash_online" text="Flashupdate (online)" picmem="skin/flash_online_updater.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_update_flash_tmp" text="Flashupdate (tmp)" picmem="skin/flash_tmp_updater.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_update_usb_online" text="Usbupdate (online)" picmem="skin/usb_online_updater.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_update_usb_tmp" text="Usbupdate (tmp)" picmem="skin/usb_tmp_updater.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="systemmenu" title="System" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="channelservice" text="Channel Service..." picmem="skin/channelservice.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="cinterface" text="Common Interface" picmem="skin/cinterface.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="scconfig" text="SmartCard Reader" picmem="skin/cinterface.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="network" text="Network" picmem="skin/network.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="harddisk" text="Harddisk" picmem="skin/harddisk.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="vfdisplay" text="VFDisplay" picmem="skin/vfdisplay.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="systemupdatemenu" text="System Update" picmem="skin/systemupdate.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_backup" text="Backup" picmem="skin/backup.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_backup_restore" text="Settings backup/restore" picmem="skin/backup_and_restore_settings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="unlock" text="Receiver unlock" picmem="skin/unlock.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="settingsmenu" title="Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="avsettings" text="A/V Settings" picmem="skin/avsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="language" text="Language" picmem="skin/language.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="timezone" text="Timezone" picmem="skin/timezone.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="settings_redbutton" text="Red Button" picmem="skin/redkeyaction.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="settings_bluebutton" text="Blue Button" picmem="skin/bluekeyaction.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="adjust" text="Adjust" picmem="skin/adjust.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="skinadjust" text="Skin Adjust" picmem="skin/adjust.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="screensaveradjust" text="Screensaver Adjust" picmem="skin/adjust.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="timeshiftsettings" text="Timeshift Settings" picmem="skin/adjust.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+###<node type="menu" name="keyboard" text="Keyboard" picmem="skin/keyboard.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="recordpath" text="Record Path" picmem="skin/recordpath.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="epgsettings" text="EPG Settings" picmem="skin/epgsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="childprotection" text="Child Protection" picmem="skin/child_protection.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="restoredefault" text="Restore default settings" picmem="skin/restoredefault.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="videosettings" text="Video Settings" picmem="skin/videosettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="channeledit" text="Channel Edit" picmem="skin/channeledit.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="skinselect" text="Skin" picmem="skin/skinselect.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="mediadbsettings" text="MediaDB Settings" picmem="skin/mediadbsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="savesettings" text="Save Settings" picmem="skin/save.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="infomenu" title="Information" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" name="serviceinfo" text="Service" picmem="skin/serviceinfo.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="newsletter" text="Newsletter" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="about" text="About" picmem="skin/about.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="streaming" text="Streaming" picmem="skin/streaming.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="infos_imageinfo" text="Atemio (hotline)" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="infos_titaninfo" text="Titan Changelog" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="infos_gitinfo" text="Git Changelog" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="system_infos" text="System Info" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node type="menu" name="log" text="Log" picmem="skin/information.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="system_infos_main" title="Information" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node parent="listbox" type="menu" name="system_infos_default" text="default" picmem="skin/default.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_freespace" text="free space" picmem="skin/freespace.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_kernel" text="Kernel" picmem="skin/kernel.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_mounts" text="Mounts" picmem="skin/mounts.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_network" text="Network" picmem="skin/network.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_ram" text="Ram" picmem="skin/ram.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_infos_sysinfo" text="System Infos" picmem="skin/system_info.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="system_sysinfos_main" title="Sysinfo" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node parent="listbox" type="menu" name="system_sysinfos_cpu" text="CPU" picmem="skin/cpu.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_mem" text="Memory" picmem="skin/meminfo.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_mtd" text="MTD" picmem="skin/mtd.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_module" text="Module" picmem="skin/module.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_devices" text="Devices" picmem="skin/devices_config.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_swap" text="Swap" picmem="skin/swap.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">	
+		<node parent="listbox" type="menu" name="system_sysinfos_top" text="Top" picmem="skin/system_info.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_ps" text="Prozesslist" picmem="skin/system_info.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node parent="listbox" type="menu" name="system_sysinfos_usb" text="USB" picmem="skin/system_info.png" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="system_infos" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1100" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="info" type="textbox" wrap="no" scrollbar="auto" font="tuxtxt" fontsize="24" fontcol="fontcol" posx="10" posy="10" width="1076" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="channelmenu" title="Channel Search" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node name="tunerconfig" type="menu" text="Tuner Configuration" picmem="skin/tunerconfig.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="autosearch" type="menu" text="Automatic Search" picmem="skin/autosearch.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="manualsearch" type="menu" text="Manual Search" picmem="skin/manualsearch.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="manualsearch_dvbc" type="menu" text="Manual Search Cable" picmem="skin/manualsearch.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="manualsearch_dvbt" type="menu" text="Manual Search Terrestrisch" picmem="skin/manualsearch.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="rotorsettings" type="menu" text="Rotor Settings" picmem="skin/rotorsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="satconfig" type="menu" text="Sat Config" picmem="skin/satconfig.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="satfinder" type="menu" text="Sat Finder" picmem="skin/satfinder.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="blindscanadjust" type="menu" text="Blindscan Settings" picmem="skin/blindscanadjust.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="harddiskmenu" title="Harddisk" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node name="formathdd" type="menu" text="Format HDD" picmem="skin/formathdd.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="filesystemcheck" type="menu" text="Filesystem Check" picmem="skin/filesystemcheck.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="configurehdd" type="menu" text="Configure" picmem="skin/filesystemcheck.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="timetosleep" type="menu" text="Time to sleep" picmem="skin/filesystemcheck.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="networkmenu" title="Network" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node name="addaptersettings" type="menu" text="Adapter Settings" picmem="skin/addaptersettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="wlansettings" type="menu" text="WLAN Settings" picmem="skin/wlansettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="networktest" type="menu" text="Network Test" picmem="skin/networktest.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="networkrestart" type="menu" text="Network Restart" picmem="skin/networkrestart.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+#		<node name="sambasettings" type="menu" text="Samba Server Settings" picmem="skin/sambasettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+#		<node name="nfssettings" type="menu" text="Nfs Server Settings" picmem="skin/nfssettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="networkbrowser" type="menu" text="Networkbrowser" picmem="skin/networkbrowser.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="httpdsettings" type="menu" text="HTTP Settings" picmem="skin/httpdsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="inadynsettings" type="menu" text="DYNDNS Settings" picmem="skin/inadynsettings.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="standbymenu" title="Standby / Poweroff" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node name="poweroff" type="menu" text="Power Off" picmem="skin/poweroff.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="dostandby" type="menu" text="Standby" picmem="skin/dostandby.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="restart" type="menu" text="Restart" picmem="skin/restart.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="guirestart" type="menu" text="GUI Restart" picmem="skin/guirestart.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+		<node name="powerofftimer" type="menu" text="Power Off Timer" picmem="skin/sleep_timer.png" parent="listbox" textposx="120" hspace="5" valign="middle" width="100%" height="50">
+<node hidden="yes" name="menutext">
+<node hidden="yes" name="details">
+</screen>
+
+
+<screen name="language" title="Language" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="po/de" text="German"     picmem="icons/de.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/en" text="English"    picmem="icons/en.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/fr" text="French"     picmem="icons/fr.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/gr" text="Greek"      picmem="icons/gr.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/it" text="Italian"    picmem="icons/it.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/pl" text="Polish"     picmem="icons/pl.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/ru" text="Russian"    picmem="icons/ru.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/nl" text="Dutch"      picmem="icons/nl.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+		<node name="po/vn" text="Vietnamese" picmem="icons/vn.png" parent="listbox" textposx="80" hspace="5" valign="middle" width="100%" height="50">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="inputhelp" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="350" hspace="30" vspace="30" bordercol="fontcol" bordersize="2" bgcol="bgcol_grey">
+<node name="inputbox" type="inputbox" font="font1" charspace="-1" fontsize="25" valign="middle" posx="0" posy="0" width="100%" height="30" bordercol="bordercol" bordersize="0" bgcol="listboxselect">
+
+<node type=grid name=grid1 font="font1" charspace="-1" fontsize=25 posx=0 posy=35 width=100% height=-10 bordercol=green bordersize=0 scrollbar=auto>
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="A" name=A>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="B" name=B>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="C" name=C>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="D" name=D>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="E" name=E>
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="F" name=F>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="G" name=G>
+<node parent=grid1 posx=310 width=120 height=30 fontcol=bgcol bgcol=green halign=center valign=middle text="OK" name=ok>
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="H" name=H>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="I" name=I>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="J" name=J>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="K" name=K>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="L" name=L>
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="M" name=M>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="N" name=N>
+<node parent=grid1 posx=310 width=120 height=30 bgcol=red halign=center valign=middle text="DEL" name=bs>
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="O" name=O>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="P" name=P>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="Q" name=Q>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="R" name=R>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="S" name=S>
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="T" name=T>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="U" name=U>
+<node parent=grid1 posx=310 width=120 height=30 halign=center valign=middle text="Clear" name=clear>
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="V" name=V>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="W" name=W>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="X" name=X>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="Y" name=Y>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="Z" name=Z>
+<node parent=grid1 posx=200 width=80 height=30 fontcol=bgcol bgcol=yellow halign=center valign=middle text="Space" name=" ">
+<node parent=grid1 posx=310 width=120 height=30 bgcol=blue halign=center valign=middle text="abc/ABC" name=switch>
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="Ä" name=Ä>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="Ö" name=Ö>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="Ü" name=Ü>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="#" name=#>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="$" name=$>
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="%" name=%>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="^" name=^>
+<node parent=grid1 posx=310 width=60 height=30 halign=center valign=middle text="<-" name=left>
+<node parent=grid1 posx=370 width=60 height=30 halign=center valign=middle text="->" name=right>
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="&" name="&">
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="*" name=*>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="(" name=(>
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text=")" name=)>
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="+" name=+>
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="-" name=->
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="_" name="_">
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text=":" name=:>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text=";" name=;>
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="'" name="'">
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="<" name="<">
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text=">" name=">">
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="." name=.>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="/" name="/">
+
+<node type=gridbr parent=grid1 posx=0 width=40 height=30 halign=center valign=middle text="?" name=?>
+<node parent=grid1 posx=40 width=40 height=30 halign=center valign=middle text="\" name="\">
+<node parent=grid1 posx=80 width=40 height=30 halign=center valign=middle text="[" name="[">
+<node parent=grid1 posx=120 width=40 height=30 halign=center valign=middle text="]" name="]">
+<node parent=grid1 posx=160 width=40 height=30 halign=center valign=middle text="," name=",">
+<node parent=grid1 posx=200 width=40 height=30 halign=center valign=middle text="{" name={>
+<node parent=grid1 posx=240 width=40 height=30 halign=center valign=middle text="}" name=}>
+
+<node hidden=YES type=grid name=grid2 font="font1" charspace="-1" fontsize=25 posx=0 posy=35 width=100% height=-10 bordercol=green bordersize=0 scrollbar=auto>
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="a" name=a>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="b" name=b>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="c" name=c>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="d" name=d>
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="e" name=e>
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="f" name=f>
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="g" name=g>
+<node parent=grid2 posx=310 width=120 height=30 fontcol=bgcol bgcol=green halign=center valign=middle text="OK" name=ok>
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="h" name=h>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="i" name=i>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="j" name=j>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="k" name=k>
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="l" name=l>
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="m" name=m>
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="n" name=n>
+<node parent=grid2 posx=310 width=120 height=30 bgcol=red halign=center valign=middle text="DEL" name=bs>
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="o" name=o>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="p" name=p>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="q" name=q>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="r" name=r>
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="s" name=s>
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="t" name=t>
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="u" name=u>
+<node parent=grid2 posx=310 width=120 height=30 halign=center valign=middle text="Clear" name=clear>
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="v" name=v>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="w" name=w>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="x" name=x>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="y" name=y>
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="z" name=z>
+<node parent=grid2 posx=200 width=80 height=30 fontcol=bgcol bgcol=yellow halign=center valign=middle text="Space" name=" ">
+<node parent=grid2 posx=310 width=120 height=30 bgcol=blue halign=center valign=middle text="ABC/abc" name=switch>
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="ä" name=ä>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="ö" name=ö>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="ü" name=ü>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="ß" name=ß>
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="0" name=0>
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="1" name=1>
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="2" name=2>
+<node parent=grid2 posx=310 width=60 height=30 halign=center valign=middle text="<-" name=left>
+<node parent=grid2 posx=370 width=60 height=30 halign=center valign=middle text="->" name=right>
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="3" name=3>
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="4" name=4>
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="5" name=5>
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="6" name="6">
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="7" name="7">
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="8" name="8">
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="9" name="9">
+
+<node type=gridbr parent=grid2 posx=0 width=40 height=30 halign=center valign=middle text="+" name="+">
+<node parent=grid2 posx=40 width=40 height=30 halign=center valign=middle text="-" name="-">
+<node parent=grid2 posx=80 width=40 height=30 halign=center valign=middle text="*" name="*">
+<node parent=grid2 posx=120 width=40 height=30 halign=center valign=middle text="/" name="/">
+<node parent=grid2 posx=160 width=40 height=30 halign=center valign=middle text="~" name=~>
+<node parent=grid2 posx=200 width=40 height=30 halign=center valign=middle text="!" name=!>
+<node parent=grid2 posx=240 width=40 height=30 halign=center valign=middle text="@" name=@>
+</screen>
+
+
+<screen name="messagebox" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="bgcol_grey" posx="center" posy="center" valign="bottom" hspace="10" vspace="5" width="500" height="300" bgcol="bgcol_blue" titlebgcol="fontcol" bordersize="2" bordercol="fontcol">
+	<node name="textbox" type="textbox" scrollbar="auto" wrap="yes" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="0" posy="1" width="100%" height="-45" bordercol="fontcol">
+	<node name="b1" hidden="yes" halign="center" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" bordercol="fontcol" bordersize="4" bordertype="2" posx="2%"  posy="0" width="100" height="40">
+	<node name="b3" hidden="yes" halign="center" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" bordercol="fontcol" bordersize="4" bordertype="2" posx="28%" posy="0" width="100" height="40">
+	<node name="b4" hidden="yes" halign="center" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" bordercol="fontcol" bordersize="4" bordertype="2" posx="54%" posy="0" width="100" height="40">
+	<node name="b2" hidden="yes" halign="center" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" bordercol="fontcol" bordersize="4" bordertype="2" posx="82%" posy="0" width="100" height="40">
+</screen>
+
+
+<screen name="serviceinfo" title="Service Information" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+
+	<node name="name" text="Name:"                   charspace="-1" fontsize="28" valign="middle" posx="10"  posy="10"  width="280" height="35">
+	<node name="provider" text="Provider:"           charspace="-1" fontsize="28" valign="middle" posx="10"  posy="50"  width="280" height="35">
+	<node name="aspectratio" text="Aspect Ratio:"    charspace="-1" fontsize="28" valign="middle" posx="10"  posy="90"  width="280" height="35">
+	<node name="resolution" text="Resolution:"       charspace="-1" fontsize="28" valign="middle" posx="10"  posy="130" width="280" height="35">
+	<node name="xres" text="TV Resolution (w):"      charspace="-1" fontsize="28" valign="middle" posx="10"  posy="170" width="280" height="35">
+	<node name="yres" text="TV Resolution (h):"      charspace="-1" fontsize="28" valign="middle" posx="10"  posy="210" width="280" height="35">
+
+	<node name="videopid" text="Video PID:"          charspace="-1" fontsize="28" valign="middle" posx="10"  posy="10"  width="280" height="35">
+	<node name="audiopid" text="Audio PID:"          charspace="-1" fontsize="28" valign="middle" posx="10"  posy="50"  width="280" height="35">
+	<node name="pcrpid" text="PCR PID:"              charspace="-1" fontsize="28" valign="middle" posx="10"  posy="90"  width="280" height="35">
+	<node name="pmtpid" text="PMT PID:"              charspace="-1" fontsize="28" valign="middle" posx="10"  posy="130" width="280" height="35">
+	<node name="txtpid" text="TXT PID:"              charspace="-1" fontsize="28" valign="middle" posx="10"  posy="170" width="280" height="35">
+	<node name="tsid" text="TSID:"                   charspace="-1" fontsize="28" valign="middle" posx="10"  posy="210" width="280" height="35">
+	<node name="onid" text="ONID:"                   charspace="-1" fontsize="28" valign="middle" posx="10"  posy="250" width="280" height="35">
+	<node name="sid" text="SID:"                     charspace="-1" fontsize="28" valign="middle" posx="10"  posy="290" width="280" height="35">
+	<node name="id" text="ID:"                       charspace="-1" fontsize="28" valign="middle" posx="10"  posy="330" width="280" height="35">
+
+	<node name="tuner" text="Tuner:"                 charspace="-1" fontsize="28" valign="middle" posx="10"  posy="10"  width="280" height="35">
+	<node name="type" text="Type:"                   charspace="-1" fontsize="28" valign="middle" posx="10"  posy="50"  width="280" height="35">
+	<node name="system" text="System:"               charspace="-1" fontsize="28" valign="middle" posx="10"  posy="90"  width="280" height="35">
+	<node name="modulation" text="Modulation:"       charspace="-1" fontsize="28" valign="middle" posx="10"  posy="130" width="280" height="35">
+	<node name="orbitalpos" text="Orbital Position:" charspace="-1" fontsize="28" valign="middle" posx="10"  posy="170" width="280" height="35">
+	<node name="frequency" text="Frequency:"         charspace="-1" fontsize="28" valign="middle" posx="10"  posy="210" width="280" height="35">
+	<node name="symbolrate" text="Symbol rate:"      charspace="-1" fontsize="28" valign="middle" posx="10"  posy="250" width="280" height="35">
+	<node name="polarization" text="Polarization:"   charspace="-1" fontsize="28" valign="middle" posx="10"  posy="290" width="280" height="35">
+	<node name="fec" text="FEC:"                     charspace="-1" fontsize="28" valign="middle" posx="10"  posy="330" width="280" height="35">
+	<node name="inversion" text="Inversion:"         charspace="-1" fontsize="28" valign="middle" posx="620" posy="10"  width="280" height="35">
+	<node name="rolloff" text="Rolloff:"             charspace="-1" fontsize="28" valign="middle" posx="620" posy="50"  width="280" height="35">
+	<node name="pilot" text="Pilot:"                 charspace="-1" fontsize="28" valign="middle" posx="620" posy="90"  width="280" height="35">
+	<node name="hp" text="Coderate HP:"              charspace="-1" fontsize="28" valign="middle" posx="620" posy="130" width="280" height="35">
+	<node name="lp" text="Coderate LP:"              charspace="-1" fontsize="28" valign="middle" posx="620" posy="170" width="280" height="35">
+	<node name="bandwidth" text="Bandwidth:"         charspace="-1" fontsize="28" valign="middle" posx="620" posy="210" width="280" height="35">
+	<node name="transmission" text="Transmission:"   charspace="-1" fontsize="28" valign="middle" posx="620" posy="250" width="280" height="35">
+	<node name="guardinterval" text="Guardinterval:" charspace="-1" fontsize="28" valign="middle" posx="620" posy="290" width="280" height="35">
+	<node name="hierarchy" text="Hierarchy:"         charspace="-1" fontsize="28" valign="middle" posx="620" posy="330" width="280" height="35">
+
+	<node name="l1"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="10"  width="290" height="35">
+	<node name="l2"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="50"  width="290" height="35">
+	<node name="l3"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="90"  width="290" height="35">
+	<node name="l4"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="130" width="290" height="35">
+	<node name="l5"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="170" width="290" height="35">
+	<node name="l6"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="210" width="290" height="35">
+	<node name="l7"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="250" width="290" height="35">
+	<node name="l8"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="290" width="290" height="35">
+	<node name="l9"                                  charspace="-1" fontsize="28" valign="middle" posx="300" posy="330" width="290" height="35">
+	<node name="l10"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="10"  width="290" height="35">
+	<node name="l11"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="50"  width="290" height="35">
+	<node name="l12"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="90"  width="290" height="35">
+	<node name="l13"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="130" width="290" height="35">
+	<node name="l14"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="170" width="290" height="35">
+	<node name="l15"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="210" width="290" height="35">
+	<node name="l16"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="250" width="290" height="35">
+	<node name="l17"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="290" width="290" height="35">
+	<node name="l18"                                 charspace="-1" fontsize="28" valign="middle" posx="910" posy="330" width="290" height="35">
+
+	<node name="b4" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b1" text="Service" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="70"  posy="0" width="180" height="40">
+	<node name="b2" text="PIDs"    picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="260" posy="0" width="180" height="40">
+	<node name="b3" text="Tuner"   picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="450" posy="0" width="180" height="40">
+</screen>
+
+
+<screen name="helpbox" title="Help" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="textbox" type="textbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="left" valign="middle" posx="10" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="timeshift" fontcol="fontcol" fontsize="30" titlealign="center" valign="bottom" posx="center" posy="10" width="480" height="100" hspace="20" vspace="10" bordercol="bordercol" bordersize="2" bgcol="bgcol_grey">
+	<node name="seek" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="center" posy="5" width="100%" height="25" halign="center">
+	<node name="timeshiftbar" progresscol="progresscol" bordersize="1" bordercol="progress_border" posx="center" posy="40" width="400" height="20" bgcol="fontcol">
+</screen>
+
+
+<screen name="epgsearch" title="EPG Search" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol2" fontsize2="28" fontcol2="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_red.png"    text="Timer" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="60"  posy="0" width="185" height="40">
+	<node name="b4" picmem="skin/key_green.png"  text="TITLE" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="255" posy="0" width="185" height="40">
+	<node name="b5" picmem="skin/key_yellow.png" text="DESC"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="450" posy="0" width="185" height="40">
+	<node name="b6" picmem="skin/key_blue.png"   text="ALL"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="645" posy="0" width="185" height="40">
+</screen>
+
+
+<screen name="wlansettings" title="WLAN Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="wlanlinkquality" func="getwlanlinkquality" progresscol="mvmode_bgcol" bgcol="rec_progress" posx="690" posy="2" width="200" height="25">
+	<node name="wlanlinkqualitytext" func="getwlanlinkqualitytext" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" valign="middle" halign="center" posx="690" posy="2" width="200" height="25">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="30" width="880" height="-50" bordercol="fontcol">
+		<node name="startmode" text="Start on boot" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="ssid"      text="SSID"          type="inputbox"  parent="listbox" valign="middle" width="100%" height="35">
+		<node name="type"      text="Type"          type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="key"       text="Key"           type="inputbox"  parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b8" picmem="skin/key_text.png" halign="center" valign="middle" posx="60"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_red.png"    text="SEARCH" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="110"  posy="0" width="165" height="40">
+	<node name="b4" picmem="skin/key_green.png"  text="START"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="285" posy="0" width="165" height="40">
+	<node name="b5" picmem="skin/key_yellow.png" text="STOP"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="460" posy="0" width="165" height="40">
+	<node name="b6" picmem="skin/key_blue.png"   text="LOG"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="635" posy="0" width="155" height="40">
+	<node name="b7" picmem="skin/key_info.png" halign="center" valign="middle" posx="800" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="inadynsettings" title="DYNDNS Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="startmode" text="Start on boot" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="user"      text="User"          type="inputbox"  parent="listbox" valign="middle" width="100%" height="35">
+		<node name="pw"        text="Password"      type="inputbox"  parent="listbox" valign="middle" width="100%" height="35">
+		<node name="host"      text="DNS Name"      type="inputbox"  parent="listbox" valign="middle" width="100%" height="35">
+		<node name="system"    text="DNS System"    type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_green.png"  text="START" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="255" posy="0" width="185" height="40">
+	<node name="b4" picmem="skin/key_yellow.png" text="STOP"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="450" posy="0" width="185" height="40">
+</screen>
+
+
+<screen name="epgscanlist" title="EPG Scanlist" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="700" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="676" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="650" posy="0" width="40" height="40">
+	<node name="b2" text="DEL" picmem="skin/key_red.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="187" height="40">
+	<node name="b3" text="ADD" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="217" posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="channelslotlist" title="Channel Allocation" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="700" height="700" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="676" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="650" posy="0" width="40" height="40">
+	<node name="b2" text="DEL" picmem="skin/key_red.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="187" height="40">
+	<node name="b3" text="ADD" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="217" posy="0" width="187" height="40">
+</screen>
+
+
+<screen name="blindscanadjust" title="Blindscan Adjust" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-40" bordercol="fontcol">
+		###
+		<node parent="listbox" name="tunertype" text="Tunertype" type="choicebox" valign="middle" width="100%" height="35">
+		### dvb-s
+		<node hidden="yes" parent="listbox" name="minfrequency" text="Minimal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="maxfrequency" text="Maximal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="stepfrequency" text="Step frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="minsignalrate" text="Minimal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="maxsignalrate" text="Maximal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="stepsignalrate" text="Step signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="usedefaultsr" text="Only default signalrate" type="choicebox" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="onlydvbs" text="Only DVBS" type="choicebox" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="usedefaultfec" text="Only default FEC" type="choicebox" valign="middle" width="100%" height="35">
+		### dvb-t
+		<node hidden="yes" parent="listbox" name="tminfrequency" text="Minimal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tmaxfrequency" text="Maximal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tstepfrequency" text="Step frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tminsignalrate" text="Minimal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tmaxsignalrate" text="Maximal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tstepsignalrate" text="Step signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tusedefaultsr" text="Only default signalrate" type="choicebox" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="tusedefaultfec" text="Only default FEC" type="choicebox" valign="middle" width="100%" height="35">
+		### dvb-c
+		<node hidden="yes" parent="listbox" name="cminfrequency" text="Minimal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cmaxfrequency" text="Maximal frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cstepfrequency" text="Step frequency" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cminsignalrate" text="Minimal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cmaxsignalrate" text="Maximal signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cstepsignalrate" text="Step signalrate" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cusedefaultsr" text="Only default signalrate" type="choicebox" valign="middle" width="100%" height="35">
+		<node hidden="yes" parent="listbox" name="cusedefaultfec" text="Only default FEC" type="choicebox" valign="middle" width="100%" height="35">
+		###
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="channelhistory" title="Channel History" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="300" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol2" fontsize2="28" fontcol2="fontcol" posx="10" posy="10" width="480" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="systemupdate_flash_online_menu" title="System - Flash Update (online)" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="10" width="600" height="40">
+	<node name="imagever" func="getimgname" halign="right" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="620" posy="10" width="518" height="40">
+	<node name="filelist" type="filelist" scrollbar="auto" picmem="skin/folder.png" textposx="40" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="70" width="1126" height="-40" bordercol="fontcol">
+	<node name="b1" text="cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="300" height="40">
+	<node name="b2" text="install" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="320" posy="0" width="300" height="40">
+	<node name="b3" text="update"  picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="630" posy="0" width="300" height="40">
+# no need
+<node hidden="yes" name="device">
+#
+</screen>
+
+
+<screen name="systemupdate_flash_tmp_menu" title="System - Flash Update (tmp)" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="10" width="600" height="40">
+	<node name="imagever" func="getimgname" halign="right" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="620" posy="10" width="518" height="40">
+	<node name="filelist" type="filelist" scrollbar="auto" picmem="skin/folder.png" textposx="40" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="70" width="1126" height="-40" bordercol="fontcol">
+	<node name="b1" text="cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="300" height="40">
+	<node name="b2" text="install" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="320" posy="0" width="300" height="40">
+# no need
+<node hidden="yes" name="device">
+#
+</screen>
+
+
+<screen name="systemupdate_usb_online_menu" title="System - USB Update (online)" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="10" width="600" height="40">
+	<node name="imagever" func="getimgname" halign="right" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="620" posy="10" width="518" height="40">
+	<node name="filelist" type="filelist" scrollbar="auto" picmem="skin/folder.png" textposx="40" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="70" width="1126" height="-90" bordercol="fontcol">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol2" posx="center" posy="530" width="1000" height="-40" bgcol="bgcol_blue">
+		<node name="device" text="Device:" type="choicebox" parent="listbox" valign="middle" width="100%" height="100%" bordersize="5" bordercol="fontcol">
+	<node name="b1" text="cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="300" height="40">
+	<node name="b2" text="install" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="320" posy="0" width="300" height="40">
+	<node name="b3" text="update"  picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="630" posy="0" width="300" height="40">
+</screen>
+
+
+<screen name="systemupdate_usb_tmp_menu" title="System - USB Update (tmp)" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="filelistpath" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="10" width="600" height="40">
+	<node name="imagever" func="getimgname" halign="right" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="620" posy="10" width="518" height="40">
+	<node name="filelist" type="filelist" scrollbar="auto" picmem="skin/folder.png" textposx="40" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10" posy="70" width="1126" height="-90" bordercol="fontcol">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol2" posx="center" posy="530" width="1000" height="-40" bgcol="bgcol_blue">
+		<node name="device" text="Device:" type="choicebox" parent="listbox" valign="middle" width="100%" height="100%" bordersize="5" bordercol="fontcol">
+	<node name="b1" text="cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="300" height="40">
+	<node name="b2" text="install" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="320" posy="0" width="300" height="40">
+</screen>
+
+
+<screen name="systeminfo" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1100" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="info" type="textbox" wrap="no" scrollbar="auto" font="tuxtxt" fontsize="24" fontcol="fontcol" posx="10" posy="10" width="1076" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="system_backup_restore" title="Backup / Restore Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="info" type="textbox" scrollbar="auto" wrap="yes" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-40" bordercol="fontcol">
+	<node name="b1" text="Cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="180" height="40">
+	<node name="b2" text="Restore" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="200" posy="0" width="270" height="40">
+	<node name="b3" text="Backup"  picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="480" posy="0" width="280" height="40">
+	<node name="b4" text="LOG"     picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="770" posy="0" width="120" height="40">
+</screen>
+
+
+<screen name="system_backup" title="Create Backup" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="info" type="textbox" scrollbar="auto" wrap="yes" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-90">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="center" posy="380" width="700" height="-40" bordercol="fontcol" bgcol="bgcol_blue">
+		<node name="listfield" text="Select backup:" type="choicebox" parent="listbox" valign="middle" width="100%" height="100%" bordercol="fontcol" bordersize="5">
+	<node name="b1" text="Cancel"  picmem="skin/key_red.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="200" height="40">
+	<node name="b2" text="Backup" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="220" posy="0" width="280" height="40">
+</screen>
+
+
+<screen name="softcam" title="Softcam Panel" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="menutitle" text="Softcam Selection" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="left" valign="middle" posx="10" posy="10" width="460" height="40">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="10" posy="60" width="460" height="-50" bordercol="fontcol">
+	<node name="ecminfo" type="textbox" wrap="yes" font="tuxtxt" charspace="-1" fontsize="22" fontcol="fontcol" posx="480" posy="60" width="410" height="-50">
+	<node name="b1" text="Deactivate" picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="190" height="40">
+	<node name="b2" text="Restart"    picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="210" posy="0" width="190" height="40">
+	<node name="b3" text="Refresh"    picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="410" posy="0" width="240" height="40">
+	<node name="b4" text="Activate"   picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="660" posy="0" width="190" height="40">
+	<node name="b7" picmem="skin/key_menu.png" halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="tpkinstall" title="TPK installation - select file" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1150" height="650" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" fontsize2="26" fontcol2="fontcol2" posx="10" posy="10" width="1136" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="1086" posy="0" width="50" height="40">
+</screen>
+
+
+<screen name="mediadbsettings" title="MediaDB Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" name="mediadbpath" text="MediaDB Path" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mediadbscandelall" text="Delete MediaDB before scan" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mediadbscandelnotfound" fontsize="24" text="Delete unused entrys before scan" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mediadbscantimeout" text="Update entrys on scan" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mediadbbackdrop" text="Backdrop Download Count" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="mediadbdebug" text="Debug Modus" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="createthumb" text="Create Thumb Picture" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="recordpicture" text="Create Record Picture" type="choicebox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="loading" text="please wait..." font="font1" fontsize="50" fontcol="fontcol" posx="center" posy="center" halign="center" width="600" height="70" bgcol="-2">
+</screen>
+
+
+<screen name="colorpicker" posx="center" posy="center" width="345" height="350" hspace="26" vspace="26" bgcol="bgcol_grey" bordercol="white" bordersize="6">
+	<node name="cp" posx="0" posy="0" width="100%" height="30" bgcol="0">
+
+	<node name="grid" type="grid" scrollbar="no" posx="0" posy="35" width="100%" height="-10">
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#616D7E" name="616D7E">
+#		<node parent="grid" posx="40"  width="40" height="30" bgcol="#616D7F" name="616D7F">
+#		<node parent="grid" posx="80"  width="40" height="30" bgcol="#616D7E" name="616D7E">
+#		<node parent="grid" posx="120" width="40" height="30" bgcol="#616D7E" name="616D7E">
+#		<node parent="grid" posx="160" width="40" height="30" bgcol="#616D7E" name="616D7E">
+#		<node parent="grid" posx="200" width="40" height="30" bgcol="#616D7E" name="616D7E">
+#		<node parent="grid" posx="240" width="40" height="30" bgcol="#616D7E" name="616D7E">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#FF0000" name="FF0000">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#DF0000" name="DF0000">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#BF0000" name="BF0000">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#9F0000" name="9F0000">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#7F0000" name="7F0000">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#5F0000" name="5F0000">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#3F0000" name="3F0000">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#00FF00" name="00FF00">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#00DF00" name="00DF00">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#00BF00" name="00BF00">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#009F00" name="009F00">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#007F00" name="007F00">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#005F00" name="005F00">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#003F00" name="003F00">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#0000FF" name="0000FF">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#0000DF" name="0000DF">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#0000BF" name="0000BF">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#00009F" name="00009F">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#00007F" name="00007F">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#00005F" name="00005F">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#00003F" name="00003F">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#FFFF00" name="FFFF00">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#DFDF00" name="DFDF00">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#BFBF00" name="BFBF00">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#9F9F00" name="9F9F00">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#7F7F00" name="7F7F00">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#5F5F00" name="5F5F00">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#3F3F00" name="3F3F00">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#00FFFF" name="00FFFF">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#00DFDF" name="00DFDF">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#00BFBF" name="00BFBF">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#009F9F" name="009F9F">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#007F7F" name="007F7F">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#005F5F" name="005F5F">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#003F3F" name="003F3F">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#FF00FF" name="FF00FF">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#DF00DF" name="DF00DF">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#BF00BF" name="BF00BF">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#9F009F" name="9F009F">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#7F007F" name="7F007F">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#5F005F" name="5F005F">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#3F003F" name="3F003F">
+
+		<node parent="grid" type="gridbr" posx="0" width="40" height="30" bgcol="#FFFFFF" name="FFFFFF">
+		<node parent="grid" posx="40"  width="40" height="30" bgcol="#DFDFDF" name="DFDFDF">
+		<node parent="grid" posx="80"  width="40" height="30" bgcol="#BFBFBF" name="BFBFBF">
+		<node parent="grid" posx="120" width="40" height="30" bgcol="#9F9F9F" name="9F9F9F">
+		<node parent="grid" posx="160" width="40" height="30" bgcol="#7F7F7F" name="7F7F7F">
+		<node parent="grid" posx="200" width="40" height="30" bgcol="#5F5F5F" name="5F5F5F">
+		<node parent="grid" posx="240" width="40" height="30" bgcol="#3F3F3F" name="3F3F3F">
+</screen>
+
+
+<screen name="unlock" title="Serial Input" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="info" type="textbox" wrap="yes" scrollbar="no" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="200" bordercol="fontcol" text="Please contact Atemio for activation. Use to navigate the control cross and the extra buttons displayed with your remote control to select.">
+	<node name="id" type="textbox" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="center" valign="middle" posx="10" posy="220" width="880" height="30" bordercol="fontcol">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="260" width="880" height="-50" bordercol="fontcol">
+		<node name="code1" text="Code1" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="code2" text="Code2" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="caidlock" title="CAID Lock" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="textinputhist" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-100" bordercol="fontcol">
+	<node name="input" type="inputbox" scrollbar="no" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" valign="middle" posx="center" posy="410" width="80%" height="40" bordercol="titlebgcol" bordersize="1" bgcol="light_blue">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" picmem="skin/key_text.png" halign="center" valign="middle" posx="800" posy="0" width="40" height="40">
+	<node name="b4" picmem="skin/key_red.png"   text="CLEAR INPUT"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="60"  posy="0" width="300" height="40">
+	<node name="b5" picmem="skin/key_green.png" text="REMOVE ENTRY" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="24" fontcol="fontcol" posx="370" posy="0" width="300" height="40">
+</screen>
+
+
+<screen name="newsletter" title="Newsletter" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="dirsort" title="Sorting" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="500" height="350" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="480" height="-40" bordercol="fontcol">
+		<node parent="listbox" type="choicebox" name="alpha"        text="alpha"         valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="reversealpha" text="reverse alpha" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="size"         text="size"          valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="reversesize"  text="reverse size"  valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="date"         text="date"          valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="reversedate"  text="reverse date"  valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="450" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="shortepg" title="EPG SHORT VIEW" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1000" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="bg" posx="10" posy="10" width="980" height="-50">
+	<node parent="bg" name="grid" type="grid" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" posx="center" posy="center" width="100%" height="100%" scrollbar="no">
+		<node parent="grid" type="textboxgridbr" wrap="yes" name="pos1" vspace="5" hspace="5" posx="0"   width="20%" height="500">
+		<node parent="grid" type="textbox"       wrap="yes" name="pos2" vspace="5" hspace="5" posx="20%" width="20%" height="500">
+		<node parent="grid" type="textbox"       wrap="yes" name="pos3" vspace="5" hspace="5" posx="40%" width="20%" height="500">
+		<node parent="grid" type="textbox"       wrap="yes" name="pos4" vspace="5" hspace="5" posx="60%" width="20%" height="500">
+		<node parent="grid" type="textbox"       wrap="yes" name="pos5" vspace="5" hspace="5" posx="80%" width="20%" height="500">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="950" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+</screen>
+
+
+<screen name="mediadbedit" title="MediaDB Edit" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1210" height="680" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="1190" height="-40" bordercol="fontcol">
+		<node parent="listbox" type="inputbox" name="title" text="Title" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="shortname" text="Shortname" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="fileinfo" text="Fileinfo" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputboxnum" name="year" text="Year" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="released" text="Released" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="runtime" text="Runtime" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="genre" text="Genre" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="director" text="Director" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="writer" text="Writer" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="actors" text="Actors" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputbox" name="plot" text="Plot" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="rating" text="Rating" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="inputboxnum" name="votes" text="Votes" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="locked" text="Scan locking" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="picture" text="Picture" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="1160" posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b3" text="PICTURE" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="190" height="40">
+</screen>
+
+
+<screen name="marker" title="Marker" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="30" width="600" height="500" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="580" height="-50" bordercol="fontcol">
+		<node type="menu" parent="listbox" name="dummy" text="dummy" textposx="0" halign="center" valign="middle" width="100%" height="50" hspace="5" hidden="yes">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="550" posy="0" width="40" height="40">
+	<node name="b3" text="delete" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="190" height="40">
+</screen>
+
+
+<screen name="playbufferstatus" func="getbufferstatus" type="progressbar" text="EXIT" font="font1" charspace="-1" fontsize="20" fontcol="fontcol" halign="center" valign="middle" progresscol="green" bordercol="white" bordersize="1" borderradius="0" posx="center" posy="60%" width="500" height="30">
+</screen>
+
+
+<screen name="log" title="LOG" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="textbox" type="textbox" wrap="yes" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="SEND" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="150" height="40">
+	<node name="b4" text="DEL" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="220" posy="0" width="160" height="40">
+</screen>
+
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+ # # # # # # # # # # # # # # # # # # # # # # # # # # # # #       Panel       # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+
+
+<screen name="panel_main" title="Panel" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_setup.png textposx=120 valign=middle name=panel_settings text="Settings" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+###		<node type="menu" pic=%pluginpath%/panel/skin/panel_infos.png textposx=120 valign=middle name=panel_infos_main text="Infos" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+</screen>
+
+
+<screen name="panel_settings_main" title="Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_automount.png textposx=120 valign=middle name=panel_settings_automount text="Automount" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_autostart.png textposx=120 valign=middle name=panel_settings_autostart text="Autostart" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_overclock.png textposx=120 valign=middle name=panel_settings_overclocking text="Overclocking" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_videotune.png textposx=120 valign=middle name=panel_settings_videotune text="Videotune" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_fancontrol.png textposx=120 valign=middle name=panel_settings_fancontrol text="Fancontrol" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hidden=no hspace=5>
+###		<node type="menu" pic=%pluginpath%/panel/skin/panel_wizard.png textposx=120 valign=middle name=panel_settings_wizard text="Wizard" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+</screen>
+
+
+<screen name="panel_autostart_main" title="Autostart" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-10" bordercol="fontcol">
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_default.png textposx=120 valign=middle name=panel_autostart_default text="Default" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_audiovideosat_config.png textposx=120 valign=middle name=panel_autostart_audiovideo text="Audio / Video / Sat" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_autofs.png textposx=120 valign=middle name=panel_autostart_usb text="Usb Device" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_camemu_config.png textposx=120 valign=middle name=panel_autostart_emu text="Cam / Emu" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_network.png textposx=120 valign=middle name=panel_autostart_network text="Network" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+		<node type="menu" pic=%pluginpath%/panel/skin/panel_parental.png textposx=120 valign=middle name=panel_autostart_safety text="Child safety" parent=listbox bordercol=bordercol bordersize=0 width=100% height=50 hspace=5>
+</screen>
+
+
+<screen name="panel_infos" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="1100" height="600" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="info" type="textbox" wrap="no" scrollbar="auto" font="tuxtxt" fontsize="24" fontcol="fontcol" posx="10" posy="10" width="1076" height="-10" bordercol="fontcol">
+</screen>
+
+
+<screen name="panel_config" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="left" valign="middle" posx="10" posy="0" width="50" height="40">
+	<node name="b2" text="Save" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="70" posy="0" width="300" height="40">
+</screen>
+
+
+<screen name="panel_settings_overclocking" title="OverClock Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-270" bordercol="fontcol">
+	<node name="label1" type="textbox"  scrollbar="auto" font="tuxtxt" charspace="-1" fontsize="24" fontcol="fontcol" posx="10" posy="205" width="880" height="-50" bordercol="fontcol" bordersize="1" bordertype="1">
+	<node name="b1" text="Cancel"  picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="200" height="40">
+	<node name="b2" text="Save" picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="220" posy="0" width="280" height="40">
+	<node name="b3" text="Test frequency"  picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="510" posy="0" width="276" height="40">
+</screen>
+
+
+# # todo ? ? ?  # #
+<screen name="panel_settings_fancontrol" title="FanControl" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="center" posy="20" width="500" height="40" bordercol="fontcol">
+		<node name="fanprogress" type="progressbar" parent="listbox" text="speed" halign="center" valign="middle" progresscol="progresscol" bordercol="progress_border" bordersize="1" width="100%" height="100%" bgcol="fontcol">
+	<node name="b3" text="500rpm"  font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="center" valign="middle" bordercol="fontcol" bordersize="4" bordertype="2" posx="100" posy="70" width="180" height="35">
+	<node name="b4" text="1500rpm" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="center" valign="middle" bordercol="fontcol" bordersize="4" bordertype="2" posx="600" posy="70" width="180" height="35">
+	<node name="b1" text="Save" picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="415" width="140" height="35">
+	<node name="b2" picmem="skin/key_exit.png" valign="middle" posx="748" posy="415" width="40" height="35">
+</screen>
+# # #
+
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+ # # # # # # # # # # # # # # # # # # # # # # # # # # #      Networkbrowser     # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+
+
+<screen name="networkbrowser_scan" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-40" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="networkbrowser" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-40" bordercol="fontcol">
+	<node name="b1" text="ADD"    picmem="skin/key_red.png"    textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="10"  posy="0" width="200" height="40">
+	<node name="b2" text="EDIT"   picmem="skin/key_green.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="220" posy="0" width="200" height="40">
+	<node name="b3" text="DEL"    picmem="skin/key_yellow.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="430" posy="0" width="250" height="40">
+	<node name="b4" text="SEARCH" picmem="skin/key_blue.png"   textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="690" posy="0" width="200" height="40">
+<node hidden="yes" name="titletext">
+</screen>
+
+
+<screen name="networkbrowser_add_share" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-40" bordercol="fontcol">
+		<node parent="listbox" name="skin_mode" text="type" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_sharename" text="sharename" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_usedns" text="usedns" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_dns" text="dnsaddresse" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_ipaddresse" text="ipaddresse" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_ftpport" text="ftpport" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_sharedir" text="sharedir" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_userauth" text="userauth" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_username" text="username" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_password" text="password" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_protocol" text="protocol" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_options" text="options" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_wsize" text="wsize" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_rsize" text="rsize" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_usessl" text="usessl" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_ssl" text="ssl" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_useproxy" text="useproxy" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxy" text="proxy" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxyip" text="proxyip" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxyport" text="proxyport" type="inputboxnum" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxyauth" text="proxyauth" type="choicebox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxyuser" text="proxyuser" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_proxypass" text="proxypass" type="inputbox" valign="middle" width="100%" height="35">
+		<node parent="listbox" name="skin_hddreplacement" text="hddreplacement" type="choicebox" valign="middle" width="100%" height="35">
+#???
+<node hidden="yes" name="skin_options1">
+<node hidden="yes" name="skin_options2">
+<node hidden="yes" name="titletext">
+#???
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="COPY" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60" posy="0" width="200" height="40">
+	<node name="b4" picmem="skin/key_text.png" halign="left"   valign="middle" posx="430" posy="0" width="40" height="40">
+</screen>
+
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+ # # # # # # # # # # # # # # # # # # # # # # # # # # #      CallMonitor      # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+
+
+<screen name="callmon_main" title="CallMonitor Settings" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+		<node name="fritzversion" text="Fritzbox Firmware... >= 05.50" type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="ipaddresse" text="IP-FritzBox" type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="userid" text="Nutzername-Fritzbox (optional)" type="inputbox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="passwort"   text="Passwort-FritzBox"   type="inputbox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="phonebook"  text="FritzBook"           type="choicebox" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="allnum"     text="alle Nummern"        type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rufnummer1" text="1.Rufnummer"         type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="rufnummer2" text="2.Rufnummer"         type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+		<node name="eingehend"  text="eingehende Anrufe"   type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="ausgehend"  text="ausgehende Anrufe"   type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="stumm"      text="bei Anruf stumm"     type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="wennaus"    text="Aktion wenn standby" type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+		<node name="atimeout"   text="Anzeige in Sekunden" type="choicebox"   parent="listbox" valign="middle" width="100%" height="35">
+#		<node name="broadcast"  text="broadcast"           type="inputboxnum" parent="listbox" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" text="Save"            picmem="skin/key_green.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="70" posy="0"  width="300" height="40">
+	<node name="b3" text="LOAD-FritzBook"  picmem="skin/key_blue.png"  textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="380" posy="0" width="300" height="40">
+</screen>
+
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+ # # # # # # # # # # # # # # # # # # # # # # # # # # #       MboxInfo      # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+
+<screen name="mboxinfo" title="" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="10" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+ # # # # # # # # # # # # # # # # # # # # # # # # # # #       Reader Config     # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
+
+<screen name="reader" title="Reader Config" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="menutitle" text="Reader Selection" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="left" valign="middle" posx="10" posy="10" width="880" height="40">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="60" width="880" height="-50" bordercol="fontcol">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+	<node name="b3" text="EDIT" picmem="skin/key_red.png" textposx="25" valign="middle" font="font1" charspace="-1" fontsize="25" fontcol="fontcol" posx="60"  posy="0" width="190" height="40">
+</screen>
+
+
+<screen name="readerconfig" title="Reader Config" titlealign="center" font="font1" charspace="-1" fontsize="30" fontcol="fontcol" posx="center" posy="center" width="900" height="520" valign="bottom" bgcol="bgcol_grey" titlebgcol="bgcol_blue">
+	<node posx="0" posy="0" width="100%" height="40" bgcol="bgcol_blue">
+	<node name="menutitle" text="Reader Configuration" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" halign="left" valign="middle" posx="10" posy="10" width="880" height="40">
+	<node name="listbox" type="listbox" scrollbar="auto" font="font1" charspace="-1" fontsize="28" fontcol="fontcol" posx="10" posy="60" width="880" height="-50" bordercol="fontcol">
+		<node parent="listbox" type="choicebox" name="enable" text="Enable" valign="middle" width="100%" height="35">
+		<node parent="listbox" type="choicebox" name="device" text="Device" valign="middle" width="100%" height="35">
+	<node name="b1" picmem="skin/key_exit.png" halign="center" valign="middle" posx="10"  posy="0" width="40" height="40">
+	<node name="b2" picmem="skin/key_ok.png"   halign="center" valign="middle" posx="850" posy="0" width="40" height="40">
+</screen>
+
Index: /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst
===================================================================
--- /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst	(revision 23269)
+++ /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postinst	(revision 23270)
@@ -12,18 +12,4 @@
 
 
-### FUNCTIONS ###
-
-RES_COL=60									# column number to place the status
-
-echo_success() {							# function to print the OK status
-	printf "%-${RES_COL}s%s\n" "$1" "[  OK  ]"
-}
-
-echo_failure() {							# function to print the FAILED status
-	printf "%-${RES_COL}s%s\n" "$1" "[FAILED]"
-}
-
-
-
 ### MAIN ###
 
@@ -32,5 +18,5 @@
 FREE=`expr $SPACE - 100`
 echo
-echo "New free space: $FREE kB"
+echo "New free space: ${FREE}kB"
 
 
Index: /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postrm
===================================================================
--- /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postrm	(revision 23269)
+++ /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/postrm	(revision 23270)
@@ -9,18 +9,4 @@
 
 
-### FUNCTIONS ###
-
-RES_COL=60									# column number to place the status
-
-echo_success() {							# function to print the OK status
-	printf "%-${RES_COL}s%s\n" "$1" "[  OK  ]"
-}
-
-echo_failure() {							# function to print the FAILED status
-	printf "%-${RES_COL}s%s\n" "$1" "[FAILED]"
-}
-
-
-
 ### MAIN ###
 
@@ -30,7 +16,6 @@
 SPACE=`getfreespace $plugin_target`
 FREE=`expr $SPACE - 100`
+echo "New free space: ${FREE}kB"
 echo
-echo "New free space: $FREE kB"
-
 echo "Successfully removed $plugin."
 
Index: /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/preinst
===================================================================
--- /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/preinst	(revision 23269)
+++ /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/preinst	(revision 23270)
@@ -9,45 +9,31 @@
 plugin="$plugin_short $plugin_type"
 
-model=`cat /etc/model`
-buildgroup=`cat /etc/.buildgroup`
-
-
-### FUNCTIONS ###
-
-RES_COL=60									# column number to place the status
-
-echo_success() {							# function to print the OK status
-	printf "%-${RES_COL}s%s\n" "$1" "[  OK  ]"
-}
-
-echo_failure() {							# function to print the FAILED status
-	printf "%-${RES_COL}s%s\n" "$1" "[FAILED]"
-}
-
-
 
 ### MAIN ###
 
-msg="Checking box type..."
-if [ "$model" = "" ]; then
-	echo_failure "$msg"
+# Is this check for anything useful???
+#model=`cat /etc/model`
+#echo -n "Checking box type..."
+#if [ "$model" = "" ]; then
+#	echo "......[FAILED]"
+#	echo
+#	echo "Sorry, $plugin is not available for the $model!"
+#	echo "Aborting installation..."
+#	exit 1
+#else
+#	echo "......[OK]"
+#fi
+
+
+echo -n "Checking installation directory..."
+if [ ! -d $plugin_target ]; then
+	echo "......[FAILED]"
 	echo
-	echo "Sorry, $plugin is not available for the $model!"
+	echo "'$plugin_target' not found!"
 	echo "Aborting installation..."
 	exit 1
 else
-	echo_success "$msg"
-fi
-
-
-msg="Checking installation directory..."
-if [ ! -d $plugin_target ]; then
-	echo_failure "$msg"
+#	echo "......[OK]"
 	echo
-	echo "Sorry, $plugin_target not found!"
-	echo "Aborting installation..."
-	exit 1
-else
-	echo_success "$msg"
 fi
 
@@ -56,32 +42,35 @@
 SPACE=`getfreespace $plugin_target`
 FREE=`expr $SPACE - 100`
-msg="Checking free space ($plugin_size in $FREE kB)..."
+echo -n "Checking free space (${plugin_size}/${FREE}kB)..."
 if [ "$FREE" -lt "$plugin_size" ]; then
-	echo_failure "$msg"
+	echo "......[FAILED]"
 	echo
-	echo "Sorry, not enough free space in $plugin_target!"
+	echo "Not enough free space in $plugin_target!"
 	echo "Aborting installation..."
 	exit 1
 else
-	echo_success "$msg"
+#	echo "......[OK]"
+	echo
 fi
 
 
-msg="Checking image type..."
-if [ `cat /etc/version | grep $buildgroup | wc -l` -eq 0 ]; then
-	echo_failure "$msg"
-	echo
-	echo "Sorry, $plugin is not available for this image type!"
-	echo "Aborting installation..."
-	exit 1
-else
-	echo_success "$msg"
-fi
+# Is this check for anything useful???
+#buildgroup=`cat /etc/.buildgroup`
+#echo -n "Checking image type..."
+#if [ `cat /etc/version | grep $buildgroup | wc -l` -eq 0 ]; then
+#	echo "......[FAILED]"
+#	echo
+#	echo "Sorry, $plugin is not available for this image type!"
+#	echo "Aborting installation..."
+#	exit 1
+#else
+#	echo "......[OK]"
+#fi
 
 
 rm -rf $plugin_dir
 
-msg="Installing $plugin..."
-echo_success "$msg"
+#echo -n "Installing $plugin..."
+#echo "......[OK]"
 
 exit 0
Index: /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm
===================================================================
--- /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm	(revision 23269)
+++ /ipk/source.sh4/titanswapskins_tobayer01/CONTROL/prerm	(revision 23270)
@@ -9,18 +9,4 @@
 
 
-### FUNCTIONS ###
-
-RES_COL=60									# column number to place the status
-
-echo_success() {							# function to print the OK status
-	printf "%-${RES_COL}s%s\n" "$1" "[  OK  ]"
-}
-
-echo_failure() {							# function to print the FAILED status
-	printf "%-${RES_COL}s%s\n" "$1" "[FAILED]"
-}
-
-
-
 ### MAIN ###
 
@@ -28,9 +14,5 @@
 SPACE=`getfreespace $plugin_target`
 FREE=`expr $SPACE - 100`
-echo "Old free space: $FREE kB"
-
-
-msg="Removing $plugin..."
-echo_success "$msg"
+echo "Old free space: ${FREE}kB"
 
 exit 0
