<!-- JavaScript by Damian Joy --><!-- Copyright 2001 Sinclair/Lee Creative --><!-- Hide the JavaScript code from older browsers that don't support it/*Purpose:     Detects the Operating System that the user is on.Description: Sets a variable to be either 'Windows' or 'Other'*/if (navigator.userAgent.indexOf('Win') != -1) {  var operatingSystem = "Windows"; } else {  var operatingSystem = "Other";} // if//-->
