function slideshow()
{
    var div ="Gslideshow";
    var isIE = navigator.appName == 'Microsoft Internet Explorer';
    var html;
    if (isIE){
        html=' <object type="application/x-shockwave-flash" width="267" height="200"' +
            'bgcolor="#ffffff" wmode="transparent" ' +
            'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"' +

            ' pluginspage="http://www.macromedia.com/go/getflashplayer" ' +
            ' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  ' +
            ' data="/flash/jpgrotator.swf?file=/show/wildlife.xml">' +
            ' <param name="movie" value="/flash/jpgrotator.swf?file=/show/wildlife.xml" />' +
            ' <param name="bgcolor" value="#ffffff" wmode="transparent"/>' +
            '</object>';
    }
    else
    {
        html = ' <object type="application/x-shockwave-flash" width="267" height="200"' +
            ' bgcolor="#ffffff" wmode="transparent" ' +
            ' data="/flash/jpgrotator.swf?file=/show/wildlife.xml">' +
            ' <param name="movie" value="/flash/jpgrotator.swf?file=/show/wildlife.xml" /> ' +
            ' <param name="bgcolor" value="#ffffff" wmode="transparent"/> ' +
            '</object> ';
    }

    getObj(div).innerHTML=html;

}

