function swapImage(oldImage, newImage) { var oldImage = document.getElementById(oldImage).src = 'images/'+newImage; }

function ValidatorClient(theForm)
{
  if ((document.theForm.clientcode.value == 0) || (document.theForm.clientcode.value == "enter client code"))
  {
    alert("Please enter a proposal code.");
    document.theForm.clientcode.value = '';
				document.theForm.clientcode.focus();
    return (false);
  }
document.theForm.submit();
}

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; 
}
}
