function swapImage(oldImage, newImage) { 
	var oldImage = document.getElementById(oldImage).src = 'images/'+newImage; 
}

function addBookmark(title,url) { 
 if (window.sidebar) { 
 	window.sidebar.addPanel(title, url,""); 
 } else if( document.all ) { 
 	window.external.AddFavorite(url, title); 
 } else if( window.opera && window.print ) { 
 	return true; 
	}
}

function ValidateForm(theForm) {
if(theForm.clientcode.value == '') {
	alert('Please fill in the "Proposal Code" field.');
	theForm.clientcode.focus();
	return false;
	}
return true;
}

function map_window(theMap) {
	var mapLink = 'maps/map.php?map=national'
	window.open(mapLink,null,"height=600,width=700,resizable=no,status=no,toolbar=no,titlebar=no"); 
}

$(document).ready(function(){
	/* Embed Flash via JS so we can have alternative content if Flash is not installed */
	var so = new SWFObject("matagorda-3-14-11.swf", "banner_container", "725", "279", "8");
	so.addParam("scale", "noscale");
	so.addParam("wmode", "transparent");
	so.write("banner_container");
	
	/* If the flash fails then show the replacement image */
	if(so.write("banner_container") == false) {
		$('#banner_container img').css('display', 'block');
	}
});

