<!-- JavaScript by Damian Joy --><!-- Copyright 2001 Sinclair/Lee Creative --><!-- Hide the JavaScript code from older browsers that don't support it/*Purpose:     Will open a Pop-up WindowDescription: The link/call will need to pass a URL, a Name for the window, as well as any              parameters for the window it will need (size, scrolling, etc)*/function openWindow(theURL, windowName, features) {      window.open(theURL, windowName, features);} // openWindow//-->