function init()
{
   size();
   logo.flashTimer = setInterval("fade()", 50);
}
function fade()
{
   if (logo.filters.alpha.opacity < 90)
      logo.filters.alpha.opacity += 1;
   else
      clearInterval(logo.flashTimer);
}
function EC(TheTR)
{
	var DataTR = eval('document.all.' + TheTR);
   document.all.mat.style.display = "none";
   document.all.pro.style.display = "none";
   document.all.nov.style.display = "none";
   document.all.gal.style.display = "none";
	DataTR.style.display="block";
}
function size()
{
   document.cookie = "res=" + escape(screen.height);
}
