﻿$(document).ready(function(){
     $(".localRep").focus(function()
    {
        if($(this).val() == "Enter postal code")
            $(this).attr('value','');
    });
    $(".localRep").blur(function ()
  {
    if($(this).val() == "")
        $(this).attr('value','Enter postal code');
  });
  
  
  $('.hideShowDefaultText').each(function(){
    $(this).attr('alt', $(this).attr('value'));
  });
  
  $('.hideShowDefaultText').focus(function(){
    if($(this).attr('value') == $(this).attr('alt'))
        $(this).attr('value', '');        
  });
  
  
  $('.hideShowDefaultText').blur(function(){
    if($(this).attr('value') == '')
        $(this).attr('value', $(this).attr('alt'));        
  });  
  
  
});

function ConfirmDelete(value)
{
    return confirm("Are you sure you want to delete this " + value + "?");
}
