// The file is provided free of charge.  My hosting services are not!

/////////////////////////////////////////////////////////////////////
//  for bandwidth thieves when no referrer 
function handleHotlinks() {
    var loc = window.location.hostname.toLowerCase();
    if ( loc.indexOf('dyn-web.com') == -1  ) {
        window.location.href = 'about:blank';
    }
}
handleHotlinks();
/////////////////////////////////////////////////////////////////////
