// JavaScript Document -> Bravo

//Dom link coloring
function colorIt(linkOption, state) {
	linkOption = "link-s"+linkOption;
	if (state == 1) document.getElementById(linkOption).style.color = "#f00"; //Over
	else document.getElementById(linkOption).style.color = "#000"; //Out
}

//Validate contact fomr
function validateMessage() {
	return true;
}

//Show map window
function showMapWin() {
	mapWin = window.open('img/sub/location-map.gif','map','width=720, height=325, menubar=yes');
	mapWin.document.title='Location Map';
	hideTip();
}


