function pageLoad() {
    // check url
    if (window.location.href.toLowerCase().indexOf('default.aspx') != -1) {
        window.location = "http://www.seeklogo.com/";
    }
    if (window.location.href.toLowerCase().indexOf('default.htm') != -1) {
        window.location = "http://www.seeklogo.com/";
    }
}