﻿// JScript File
function MakeEmpty(doc,text)
{
    $(document).ready(function(){	

	    $('#'+doc+'').click(function() {
		    if ($(this).attr("value") == text) {
			    $(this).attr("value", "");
		    }
	    });
    	
	      $('#'+doc+'').blur(function() {
		    if ($(this).attr("value") == "") { 
			    $(this).attr("value", text);
		    }
        });
        
         $('#'+doc+'').focus(function() {
		     if ($(this).attr("value") == text) {
			    $(this).attr("value", "");
		    }
        });
    });
}

