// JavaScript Document

function templateStart() {
	//setTimeout('flash();',500);
}

function flash() {
	if(document.getElementById('PostField').style.backgroundColor == 'blue') {
		document.getElementById('PostField').style.backgroundColor = 'red';
	} else {
		document.getElementById('PostField').style.backgroundColor = 'blue';
	}
	setTimeout('flash();',500);
}
