// popup-function for the unit converter

function popitup(url) {
        newwindow=window.open(url,'name','height=360,width=350, top=100, left=100' );
        if (window.focus) {newwindow.focus()}
        return false;
}

