// JavaScript Document
function SetKeyword(obj,id)
{
	//alert('hi');
    if (id==0 && obj.value=='')
    {
        obj.value='Enter Event Key Word';
    }
    else if (id==1 && obj.value=='Enter Event Key Word')
    {
       obj.value='';
    }
}