Hi,
I'm having a problem adding a javascript to a site. It seems like no matter what I try I can't get it to work. I'm sure it's my lack of knowledge but according to the vendor (magaya) I should just be able to drop their code into an HTML module and it should work. Here's the tracking link, the site is version 06.01.05 (142) and is hosted on Powerdnn. Here's what the vendor provided. Any help would be greatly appreciated...
----------------------------------------------------------------------------------------------------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TRACK & TRACE</title>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td id="WebTrackingHolder">
<!-- Here is where the tracking control is displayed -->
</td>
</tr>
</table>
<!-- Load the script and call the function to display the Web LiveTrack control -->
<script type="text/javascript" language="javascript" src="http://www.magaya.com/products/livetrack.js"></script>
<script type="text/javascript" language="javascript">
//
//DisplayTrackingControl Parameters: object_holder_id, magaya_network_id, width, height, align, border, color index (0-4)
//
//You should enter your own Magaya Network ID replacing the 13939 which is a Magaya Corporation Demo Database
//Color Index are: {0 = classic, 1 = blue, 2 = green, 3 = gray, 4 = purple}
//
DisplayTrackingControl("WebTrackingHolder", "25939", "100%", "100%", "center", "0", "1");
</script>
</body>
</html>
------------------------------------------------------------------------------------------------------------------------------------