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"); 
}
