﻿var key;
function search()
{
    key = document.getElementById("keyword").value;
    var url;
    //alert(key);
    if(key != "" && key !="key word")
    {
        url = "search.aspx?keywords=" + encodeURIComponent(key);
        window.location = url;
        //window.open(url);
    }
    else
    {
    }
}

function copyToClipBoard(){
    var clipBoardContent=''; 
    clipBoardContent+=window.location;
    window.clipboardData.setData("Text",clipBoardContent);
    alert("Copyed!!");
}

function changecolor()
{
    document.getElementById("mm1").style.backgroundImage = "url(images/menubg.gif)";
}

function changecolor2()
{
    document.getElementById("mm2").style.backgroundImage = "url(images/menubg.gif)";
}

function changecolor3()
{
    document.getElementById("mm3").style.backgroundImage = "url(images/menubg.gif)";
}

function changecolor4()
{
    document.getElementById("mm4").style.backgroundImage = "url(images/menubg.gif)";
}

function changecolor5()
{
    document.getElementById("mm5").style.backgroundImage = "url(images/menubg.gif)";
}

function changecolor6()
{
    document.getElementById("mm6").style.backgroundImage = "url(images/menubg.gif)";
}