function popitup(url) {
    newwindow=window.open(url,'name','height=360,width=550,toolbar=no,menubar=no,left=400,top=400,scrollbars=1');
    if (window.focus) {
        newwindow.focus();
    }
    return false;
}
