//#E0F0F5
var rval,gval,bval;
var flashes=0;
function newFlash() {rval=224;gval=240;bval=245;flashes=0;flashDown();}
function flashDown() {
	if(flashes==2) return;
	rval-=5;gval-=5;bval-=5;
	document.getElementById("contactBox").style.backgroundColor="#"+d2h(rval)+d2h(gval)+d2h(bval);
	if(rval<150) {flashes++;flashUp();return;}
	setTimeout("flashDown()",15);
}
function flashUp() {
	rval+=5;gval+=5;bval+=5;
	document.getElementById("contactBox").style.backgroundColor="#"+d2h(rval)+d2h(gval)+d2h(bval);
	if(rval==224) {flashDown();return;}
	setTimeout("flashUp();",15);
}

function d2h(d) {return d.toString(16);}
function h2d(h) {return parseInt(h,16);} 