﻿// ###################################################################
// Fran Donnelly
// 19/07/2010
// New Custom Google Search Page
// ###################################################################
function googleCustomSearch() {
    var googleUrl = "http://www.utvmedia.com/results/default.aspx";
    var queryString = "?cx=001336496915560883957:s0pm4euboxw&cof=FORID:9&ie=ISO-8859-1&q=";
    var txtSearch = document.getElementById('txtSearch');
    if (txtSearch) {
        queryString += txtSearch.value;
        location.href = googleUrl + queryString;
    }
    return false;
}

function OnFocusGoogle(elementId) {
    document.getElementById(elementId).className = "normal";
}

function OnBlurGoogle(elementId) {
    document.getElementById(elementId).className = "watermark";
}
// ###################################################################
