﻿if (location.protocol != 'http:')
{
window.location = 'http://' + 'www.taps.org' + location.pathname + location.search;
//alert(location.host + location.pathname + location.search)
}
else {
if (location.host != 'www.taps.org')
{
window.location = 'http://www.taps.org' + location.pathname + location.search;
}
}

