function Moveovermain(that)
{
that.style.background='#056584';
that.style.color='#FFFFFF';
that.style.fontWeight='bold';
}
function Moveoutmain(that)
{
that.style.background='#f6f5f6'; 
that.style.color='#000000';
that.style.fontWeight='bold';
}
function GetCounter(str)
{
var begin = "<img src=\"images/dg";
var middle = ".gif\" width=\"11\" height=\"16\" alt=\"";
var last = "\">";
    for(x = 0;x < str.length; x++) 
   {
    str1 = str.charAt(x);
    document.write(begin + str1 + middle + last)
   }
}

function GetCounterInside(str)
{
var begin = "<img src=\"../images/dg";
var middle = ".gif\" width=\"11\" height=\"16\" alt=\"";
var last = "\">";
    for(x = 0;x < str.length; x++) 
   {
    str1 = str.charAt(x);
    document.write(begin + str1 + middle + last)
   }
}