 /*******************************************************************************************'
 Script Purpose : This script is to remove the borders arround the flash objects in IE 6.0 
 Form Author  : Paul SEMAAN
 ******************************************************************************************'
 */
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}

 