
var col_1 = new String();
var col_2 = new String();
var x=1;

bslc = "rgb(0,104,200)";
brlc = "rgb(20,124,220)";

bslc_hover = "rgb(85,168,246)";
brlc_hover = "rgb(105,188,255)";

base_link_color = bslc;
bright_link_color = brlc;

function blink()
{
 if(x%2) 
 {
  col_1 = base_link_color;
  col_2 = bright_link_color;
 }else
 {
  col_1 = bright_link_color;
  col_2 = base_link_color;
 }
 
document.getElementById('aF').style.color=col_1;
document.getElementById('bF').style.color=col_2;
document.getElementById('cF').style.color=col_1;

 x++;
 
 if(x>2){x=1};
 
 setTimeout("blink()",200);
}

function flicker_normal()
{
base_link_color = bslc;
bright_link_color = brlc;
}

function flicker_hover()
{
base_link_color = bslc_hover;
bright_link_color = brlc_hover;
}

function OpenMailer()
{
	blowup_window = window.open('date/contact_me.html','OTHER','width=600,height=550,resizable=yes,scrollbars=no,toolbar=yes,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

