I was not able to reproduce this error with either IE6 or IE7 running on XP Pro... is there anything you know about the configurations where this problem occurs? (i.e., IE version, security/privacy setting, etc.)
On an unrelated note, you appear to have a misconfiguration in your includes/configure.php file:
these lines:
Code:
define('HTTP_SERVER', 'http://www.trianglecarpets.co.uk/');
define('HTTPS_SERVER', 'https://www.trianglecarpets.co.uk/');
should be like this:
Code:
define('HTTP_SERVER', 'http://www.trianglecarpets.co.uk');
define('HTTPS_SERVER', 'https://www.trianglecarpets.co.uk');
(NOTE the removal of the trailing / marks)
BrandTim