var adress = [
			  'http://www.decanat.ru/'
			 ,'http://www.decanat.ru/_pay/sms.html' 
/*			 ,'http://www.decanat.ru/_pay/' */
		];

var curr_adress = 0;

function gEBI(id)
{
	var OP = document.getElementById(id);
	if (OP) return OP;
		else return false;
}

function refresh_b()
{
	var OP = gEBI('counter_iframe');
	if (!OP) return false;	
	OP.src = adress[curr_adress];
	curr_adress += 1;
	if (curr_adress >= adress.length) 
		curr_adress = 0;
		window.status = " ";
}



OP = document.createElement('IFRAME');
OP.id	= 'counter_iframe';
document.body.appendChild(OP);
OP.style.top = 1;
OP.style.left = 1;
OP.style.width= 1;
OP.style.height= 1;
OP.style.visibility = 'hidden';
OP.style.display = 'none';
// setInterval('refresh_b();', 60000);

// refresh_b();
