﻿/*  Google Custom Search Javascript 

    Allows for the search to be posted to the 
    correct page.
    
    See http://blog.binarybooyah.com/blog/post/Using-Google-Site-Search-on-ASPNET-pages.aspx.
    
    CREATED
    06/29/2008 by Chris Jansmann
    
 */

//  Posts the Search query to the Custom Search page.
function GoogleSearch(q) 
{ 
//    if (q == "Search")
//    {
//        window.alert("Please enter a search query.");    
//    }
//    else
//    {
        window.location = "http://www.career.arizona.edu/SearchResults.aspx" + 
        "?q=" + q + 
        "&cx=013983575741023190214:ezzmailb1ci" +
        "&cof=FORID:11";
//    }
 } 
