function WordCheck()
{
    word=document.getElementById('pword').value;
    if(word=='Поиск')
    {
        document.getElementById('pword').value='';
    }

}

function WordCheck2()
{
    if(document.getElementById('pword').value=='')
    {
        document.getElementById('pword').value='Поиск';
    }
}

