In Flash photo slideshow XML file is not loading

I am working with the flash photo slideshow with thumbnail http://www.kirupa.com/developer/mx2004/thumbnails.htm

Its a great tutorial. I have made a slideshow of my own from that. The slideshow is running fine in my local machine but when I am placing it in server the swf file is loading in html page but the xml fikle is not loading. But there is no error message. I have placed the .swf file , xml file and images in the same place.

My xml code

<?xml version=“1.0” encoding=“utf-8” standalone=“yes”?>
<images>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img3large.jpg</image>
<caption>Me with parents</caption>
<thumbnail>img2thumb.jpg</thumbnail>
<link>img3large.jpg</link>
</pic>
<pic>
<image>img2large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img3thumb.jpg</thumbnail>
<link>img2large.jpg</link>
</pic>
<pic>
<image>img4large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img4thumb.jpg</thumbnail>
<link>img4large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
<pic>
<image>img1large.jpg</image>
<caption>Nice smile</caption>
<thumbnail>img1thumb.jpg</thumbnail>
<link>img1large.jpg</link>
</pic>
</images>

My html code
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>Untitled Document</title>
</head>
<body>
<table width=“100%” border=“0” cellspacing=“0” cellpadding=“0”>
<tr>
<td align=“center”><object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0” width=“592” height=“484”>
<param name=“movie” value=“thumbnail_final4.swf” />
<param name=“quality” value=“high” />
<embed src=“thumbnail_final4.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“592” height=“484”></embed>
</object></td>
</tr>
</table>

Can anybody help whats wrong?