[求助]ajax在firefox和IE中的错误

[求助]ajax在firefox和IE中的错误

<?php
ini_set("default_charset","gb2312");
echo "<?xml version='1.0' encoding='gb2312' ?>";
echo "<response>";
echo "<address>lookupCustomer|吃饭</address>";
echo "</response>";
?>

这段代码我在IE中可以运行
但在FIREFOX中出现错误
[Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIFileOutputStream.init]"  nsresult: "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsSessionStore.js :: sss_writeFile :: line 2063"  data: no]
file:///C:/Program%20Files/Mozilla%20Firefox/components/nsSessionStore.js
Line 2063
---------------------------------------------------------------------------------------------------------------------------------------------
还有一个
$sql1="select cityName from city_name where pid=$pid1";
$result1=mysql_query($sql1);
echo "<?xml version='1.0' encoding='gb2312'?>";
echo "<response>";
while($row=mysql_fetch_row($result1)){
        echo "<script language='javascript'>alert('$row[0]');</script>";       
        echo "<city>$row[0]</city>";
}
echo "</response>";
在FF里可以正确弹出对话框
在IE中一个对话框都不弹出

怎么回事?