function active1()
{
	
	theObjects = document.getElementsByTagName("object");
	for (var i = 0; i < theObjects.length; i++) {
	//	alert(theObjects[i].outerHTML);
	theObjects[i].outerHTML = theObjects[i].outerHTML;
	/*
	if(theObjects[i].outerHTML == theObjects[i].outerHTML)
		alert('Both are same');
	else
	alert('both are not same');
*/
	}
	
}
	


