//contact popup window

var DHTML = (document.getElementById || document.all || document.layers);
function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}

function doBlink(flag)
{
    var ii,x,this_blinker;
	if (!DHTML) return;
	for (ii=0;ii<blink_ctr;ii++) {
	  this_blinker = "blink_" + ii;
	  x = new getObj(this_blinker);
	  x.style.backgroundColor =
	    (x.style.backgroundColor == 'yellow') ? backgroundColor : 'yellow';
	  blinkBGColor = x.style.backgroundColor;
	}
}
function InitBlink() {
//  setInterval("doBlink()",1000);
}
