<!-- // Begin Header portion of the script
// Blink text. Ensure ID="somename" is present within tags
// i.e. <p id=textid>text</p>
// and add the following:
// <body OnLoad="blink('textid');">

function blink(elementId) 
{
	var interval = 500;
	var colour1 = "red", colour2 = "#3399ff";
	if (document.getElementById) 
	{
		var element = document.getElementById(elementId);
		element.style.color = (element.style.color == colour1) ? colour2 : colour1;
		setTimeout("blink('" + elementId + "')", interval);
	}
}

// End of header portion of script -->
