function hideBorder()
{
var theObject = document.getElementsByTagName("object");
for (i = 0 ;i < theObject.length ; i++)
{
theObject[i].outerHTML =  theObject[i].outerHTML;
}
}

