﻿// favicon.js

// Favicon JScript File
// This creates a favourites icon for the url and should be included on every page

document.write
    (
        
        '<LINK REL="SHORTCUT ICON" HREF="../images/favicon.ico">' +
         '<LINK REL="icon" HREF="../images/favicon.ico" TYPE="image/ico"> '
    );

