var pop=null

function popswindows(url,name,width,height)
{
    paramstp="height="+height+",width="+width+",top=10,left=10,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no"
    pop=window.open(url,name,paramstp);
    if (pop.focus)
    {
        pop.focus();
    }
    return;
}