function openw(w)
{
 w=window.open("","newwin","top=10,left=10,width=900,height=400,scrollbars,resizable");
 return(w);
}

function closew(w)
{
 w.close();
}

