<html>
<body>
<?php
$v_country_iso_code = $record->country->isoCode;
if (strcmp($v_country_iso_code, "AU"))
{
header('location: https://cuprimas.com');
die;
}
else
{
header('location: http://satisartravels.com');
die;
}
?>
</body>
</html>