if ( location.hostname == "www.kaseysworld.com" ) { 
    window.location = "http://www.kaseysworld.com/site/index.php"; 
} else if ( location.hostname == "kaseysworld.com" ) { 
    window.location = "http://www.kaseysworld.com/site/index.php"; 
} else if ( location.hostname == "www.bryanmiller.net" ) { 
    window.location = "/objectwerx/index.php"; 
} else if ( location.hostname == "bryanmiller.net" ) { 
    window.location = "/objectwerx/index.php"; 
} else { 
    alert("<h2>Your attempt to reach (" + location.hostname + ") was unsuccessful. Please check your address and try again. <br>");
}

