function create_ele(page_id)
{
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name","pointer");
input.setAttribute("id","pointer");
input.setAttribute("value", page_id);
document.getElementById('news1').appendChild(input);
alert(document.getElementById('pointer').value);
document.news1.submit();
}
