// OVER NHIEU HINH KHONG CO HIEU UNG
function ChangeImage(name,image)
{
	document[name].src=image
}

function Moveover(that)
{
that.style.backgroundColor='#ffffff';
that.style.color='black';
that.style.fontWeight='bold';
that.style.fontFamily='Tahoma';
that.style.letterSpacing='0.1mm';
that.style.border='1px ridge #990000';
}
function Moveout(that)
{
that.style.backgroundColor='#990000';
that.style.color='#ffffff';
that.style.fontWeight='bold';
that.style.fontFamily='Verdana';
that.style.letterSpacing='-0.2mm';
that.style.border='1px ridge #ffffff';

}

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()
