﻿function getPageRank(txtURLID, lblResultID) {
    /*var txtURL = document.getElementById(txtURLID);
    var lblResult = document.getElementById(lblResultID);
    if (txtURL != null && lblResult != null) {
        var pageRank = googlepagerank.getpr(txtURL.value);
        lblResult.innnerHTML = pageRank;
    }*/

    document.location = "_php/pagerank.php";
}


function hintBlur(textBox, hintText) {
    if (textBox != null && textBox.value == "" || textBox.value == hintText) {
        textBox.value = hintText;
        textBox.style.color = "Gray";
    }
}

function hintClick(textBox, hintText) {
    if (textBox != null && textBox.value == hintText) {
        textBox.value = "";
        textBox.style.color = "";
    }
}


