﻿// Redirect user to http://www.pampersbbclub.com/organizer if he/she type in http://organizer.pampers.com.hk
var targetURL = "http://www.pampersbbclub.com/organizer";
function RedirectOrganizerUser()
{
	var h = location.hostname;
	if (h.indexOf("organizer.pampers.com.hk") >= 0)
	{
		location.href = targetURL;
	}
}
RedirectOrganizerUser();