// OVER NHIEU HINH KHONG CO HIEU UNG
function ChangeImage(name,image)
{
	document[name].src=image
}

function Moveover50(that)
{
that.style.backgroundImage='url(images/b_50_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout50(that)
{
that.style.backgroundImage='url(images/b_50.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}
function Moveover30(that)
{
that.style.backgroundImage='url(images/b_30_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout30(that)
{
that.style.backgroundImage='url(images/b_30.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}

function Moveover65(that)
{
that.style.backgroundImage='url(images/b_65_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout65(that)
{
that.style.backgroundImage='url(images/b_65.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}

function Moveover75(that)
{
that.style.backgroundImage='url(images/b_75_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout75(that)
{
that.style.backgroundImage='url(images/b_75.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}


function Moveover90(that)
{
that.style.backgroundImage='url(images/b_90_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout90(that)
{
that.style.backgroundImage='url(images/b_90.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}
function Moveover135(that)
{
that.style.backgroundImage='url(images/b_135_over.gif)';
that.style.color='#D3206A';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='1px';
}
function Moveout135(that)
{
that.style.backgroundImage='url(images/b_135.gif)';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
}

function mouseover(that)
{
that.style.color='cc0000';
that.style.fontSize='10px';
that.style.fontFamily='verdana';
that.style.fontWeight='bold';
}
function mouseout(that)
{
that.style.color='333333';
that.style.fontSize='9px';
that.style.fontFamily='verdana';
that.style.fontWeight='bold';
}

var tit = document.title;
var c = 0;
function writetitle()
{
  document.title = tit.substring(0,c);
  if(c==tit.length)
  {
    c = 0;
    setTimeout("writetitle()", 3000)
  }
  else
  {
    c++;
    setTimeout("writetitle()", 200)
  }
}
writetitle()


