function questformInputValues(input_id, title)
{
    var puv_hodn = "";

    $('#' + input_id).val(title);

    $('#' + input_id)
    .focus(function() {
        puv_hodn = $(this).val();
        if ($(this).val() == title) {
            $(this).val("");
        }
    })
    .blur(function() {
        if ($(this).val() == '') {
            $(this).val(title);
        }
    });
}

