var oriurl = 'http://www.voilanet.com';
var desturl = 'http://www.voilawatches.com';
if (document.location.href.indexOf(oriurl) == 0)
{
    var newurl = desturl + document.location.href.substring(oriurl.length);
    document.location.href = newurl;
}
