

function openWin1(ahref)
{

function openWin1(ahref)
{
atext='width=800,height=700,top=1,resizable=no';
//imfl='openwin.php?path='+ahref;
imfl=ahref;
popupWin = window.open(imfl, 'kupon', atext); 
popupWin.focus(); 
return false;
}

alert('fuck');

var kupon = document.getElementById('kupon');

kupon.onclick=function(){
	//alert('fuck');
	openWin1(this.href);
	return false;
	}


}

var i=1;
function blink(){
var element = document.getElementById('sale');
//alert(element.style.color);
//element.firstChild.valueNode=element.style.color;
	if(i == 1){
	i++;
	element.style.color='#fff';
	}
	else{
	i--;
	element.style.color='#f0bf7d';
	}
//alert(element.style.color);
	setTimeout('blink()', 1500);
}


window.onload = function() {
	blink();
	

	}
