// JavaScript Document

/*
*******************************************************************
 *                                                    		*
 *  Com1 (www.com1uk.com), helpdesk@com1uk.com        		*
 *  Registered in England, Wales & India              		*
 *                                                    		*
 *  Site: www.hikingpantsnz.com            			*
 *                                                              *
 *  Program Name – fixit.js, Created By – Salim Khan , Created Date - 25/08/08
 *  Purpose – The below code is used to fix the error in IE*
              'Click here to activate' on flash object.
 *                                                              *
 *  Major Functions:      N/A                                   *

 *       1. Function Name   -- Purpose of Function              *
 *                                                              *
 *  Modified Date –   		Modified By –                   *
 *  Modification Note –                                         *
 *                                                              *
*******************************************************************

*/


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