﻿function FocusTitle(textbox) {
    textbox.style.color = "#000";
    if (textbox.value == "Búsqueda por Título..") {
        textbox.value = "";
    }
        
}
function LostFocusTitle(textbox) {
    textbox.style.color = "#666";
    if (textbox.value == "") {
        textbox.value = "Búsqueda por Título..";

    }

    var reg = new RegExp("<b>");

}

function FocusAuthor(textbox) {
    textbox.style.color = "#000";
    if (textbox.value == "Búsqueda por Autor..") {
        textbox.value = "";
    }

}
function LostFocusAuthor(textbox) {
    textbox.style.color = "#666";
    if (textbox.value == "") {
        textbox.value = "Búsqueda por Autor..";

    }
}

