// JavaScript Document

var stat =  false
function blinker() {
	refS            =  document.getElementById("blinker").style;
	stat            =  stat? false : true;
	refS.visibility =  stat? "visible" : "hidden";
}
