function changewidth(srcElement, ajdi)
{	var screenres = screen.width;

var elem = document.getElementById(ajdi);
elem.style.width = "250px";
/* alert (elem);
if (screenres == "1280")
    { elem.style = "width: 260px;";
    }
   else if (screenres == "1152x864")
    {
        elem.style = "overflow: auto; height: 200px; width: 1142px;";
        alert("else if");
    }
    else
    {
        elem.style = "overflow: auto; height: 200px; width: 1270px;";
        alert("else");
    }*/
    return false;
}
