function showNum(str) {


	var leng = str.length;
    var output = '';
	
	document.write('<img src="../res/digits/kla.gif" border=0 width=3 height=5>');
	
    for (var i = 0; i < leng; i++) {
		if (str[i]=='1')
			document.write('<img src="../res/digits/1.gif" border=0 width=4 height=5>');
		if (str[i]=='2')
			document.write('<img src="../res/digits/2.gif" border=0 width=4 height=5>');
		if (str[i]=='3')
			document.write('<img src="../res/digits/3.gif" border=0 width=4 height=5>');
		if (str[i]=='4')
			document.write('<img src="../res/digits/4.gif" border=0 width=4 height=5>');
		if (str[i]=='5')
			document.write('<img src="../res/digits/5.gif" border=0 width=4 height=5>');
		if (str[i]=='6')
			document.write('<img src="../res/digits/6.gif" border=0 width=4 height=5>');
		if (str[i]=='7')
			document.write('<img src="../res/digits/7.gif" border=0 width=4 height=5>');
		if (str[i]=='8')
			document.write('<img src="../res/digits/8.gif" border=0 width=4 height=5>');
		if (str[i]=='9')
			document.write('<img src="../res/digits/9.gif" border=0 width=4 height=5>');
		if (str[i]=='0')
			document.write('<img src="../res/digits/0.gif" border=0 width=4 height=5>');
		if (str[i]=='-')
			document.write('<img src="../res/digits/strich.gif" border=0 width=4 height=5>');
		document.write('<img src="../res/blank.gif" border=0 width=1 height=5>');	
		}
	document.write('<img src="../res/digits/klb.gif" border=0 width=3 height=5>');
	document.write('<img src="../res/blank.gif" border=0 width=5 height=5>');
	document.write('&nbsp;');
}
