var newwindow;
function popupopen(url)
{
    newwindow=window.open(url,'name','height=600,width=600','location=no');
    if (window.focus) {newwindow.focus()};
}
