function search( e )
{
if ( e.value == "wyszukiwarka" )
{
e.value = '';
return false;
}
}





function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}