$(document).ready(function()
{
  isError = document.forgot_password.show_error.value
  
  if(isError == "false")
  {
	  hideErrorBox();
  }
  else
  {
	  showErrorBox();
	  
  }
}
);

function showErrorBox()
{
	 BAM_AD_show()
	
	
	 document.forgot_password.show_error.value='true'
}
function hideErrorBox()
{
	BAM_AD_hide();
	
	document.forgot_password.show_error.value='false'
	
	
}
