﻿// JScript File

            function GoogleSearch(q) { 
            var str = "http://www.google.com/search" + 
            "?q=" + q + 
            "&domains=obstacle-lights.com" + 
            "&sitesearch=obstacle-lights.com" + 
            "&forid=1" + 
            "&channel=123" + 
            "&client=pub-123" + 
            "&ie=ISO-8859-1" + 
            "&oe=ISO-8859-1" + 
            "&hl=en";
            window.open(str, 'search');
            }
        