var newwindow;
function popwindow(url)
{
    newwindow=window.open(url,'name','height=360,width=500,scrollbars=no,resizable=no,menubar=no,dependent=yes,status=no');
    if (window.focus) {newwindow.focus()}
}




