
function MYfromCharCode(x, y, z) {
 
 var y, c;
 
 var c = (y == z) ? "font-size:21px; color:red" : "font-size:20px; color:blue";
 
 y="<span style='" + c + "'><b>" + String.fromCharCode(x) + "</b></span>";
 return y;
 
}


function qollanma(x) {

   objH=document.getElementById("inpHelp");

var qlnm;

qlnm =     "a: " + MYfromCharCode(1575,'a',x) +
 	",  a':" + MYfromCharCode(1571,'a°',x)+   
	",  b: " + MYfromCharCode(1576,'b',x) + 
	",  t: " + MYfromCharCode(1578,'t',x) + 
	",  c: " + MYfromCharCode(1579,'c',x) + 
	",  j: " + MYfromCharCode(1580,'j',x) +
	",  h: " + MYfromCharCode(1581,'h',x) +
	",  x: " + MYfromCharCode(1582,'x',x) +
	",  d: " + MYfromCharCode(1583,'d',x) +
	",  z':" + MYfromCharCode(1584,'z°',x)+
	",  r: " + MYfromCharCode(1585,'r',x) +  
	"   z: " + MYfromCharCode(1586,'z',x) +
	",  s: " + MYfromCharCode(1587,'s',x) +
	",  v: " + MYfromCharCode(1588,'v',x) +
	",  s':" + MYfromCharCode(1589,'s°',x)+
	",  d':" + MYfromCharCode(1590,'d°',x)+
	",  t':" + MYfromCharCode(1591,'t°',x)+
	",  p: " + MYfromCharCode(1592,'p',x) + "<br>" +
	",  e: " + MYfromCharCode(1593,'e',x) +
	",  g':" + MYfromCharCode(1594,'g°',x)+
	",  f: " + MYfromCharCode(1601,'f',x) +  
	"   q: " + MYfromCharCode(1602,'q',x) +
	",  k: " + MYfromCharCode(1603,'k',x) +
	",  l: " + MYfromCharCode(1604,'l',x) +
	",  m: " + MYfromCharCode(1605,'m',x) +
	",  n: " + MYfromCharCode(1606,'n',x) +
	",  w: " + MYfromCharCode(1608,'w',x) +
	",  h':" + MYfromCharCode(1607,'h°',x)+
	",  y: " + MYfromCharCode(1609,'y',x) +
	",  y: " + MYfromCharCode(1610,'y',x) +
	",  p':" + MYfromCharCode(1577,'p°',x)+ "<br>" + 
	"   A: " + MYfromCharCode(1614,'A',x)+
	",  u: " + MYfromCharCode(1615,'u',x) +
	",  i: " + MYfromCharCode(1616,'i',x) +
	",  o: " + MYfromCharCode(1618,'o',x) +
	",  o':" + MYfromCharCode(1611,'o',x) +
	",  g: " + MYfromCharCode(1612,'g',x) +
	",  i':" + MYfromCharCode(1613,'i',x) + 
	",  e':" + MYfromCharCode(1617,'e°',x)+ 
	",  x':" + MYfromCharCode(1620,'x°',x)+
	",  X':" + MYfromCharCode(1621,'X°',x)+
	",  X: " + MYfromCharCode(1569,'X',x) +	
	",  , :" + MYfromCharCode(1621,',',x) + "<br>" + 
	"   0 :" + MYfromCharCode(1632,'0',x) +
	",  1 :" + MYfromCharCode(1633,'1',x) +
	",  2 :" + MYfromCharCode(1634,'2',x) +
	",  3 :" + MYfromCharCode(1635,'3',x) +
	",  4 :" + MYfromCharCode(1636,'4',x) +
	",  5 :" + MYfromCharCode(1637,'5',x) +
	",  6 :" + MYfromCharCode(1638,'6',x) +
	",  7 :" + MYfromCharCode(1639,'7',x) +
	",  8 :" + MYfromCharCode(1640,'8',x) +
	",  9 :" + MYfromCharCode(1641,'9',x);


//alert(qlnm);

//objH.innerText = qlnm;
objH.innerHTML  = qlnm;


}


