<?php
if ((strtoupper($_SERVER['SERVER_NAME']) == "WWW.WEBPAYROLLSYSTEM.CO.UK") ||
	(strtoupper($_SERVER['SERVER_NAME']) == "WEBPAYROLLSYSTEM.CO.UK") ||
	(strtoupper($_SERVER['SERVER_NAME']) == "WWW.WEBPAYROLLSYSTEM.COM") ||
	(strtoupper($_SERVER['SERVER_NAME']) == "WEBPAYROLLSYSTEM.COM"))
{
	header("Location: http://" . $_SERVER['SERVER_NAME'] . "/WebPayrollSystem.asp");
	exit;
}
else
{
echo $_SERVER['SERVER_NAME'];
}
?> 