/*
 * Car-var javascript library
 */

function openURLPopup(URL, title, width, height) { 
    var newWindow = window.open(URL, "", "toolbar=0,menubar=0,status=0,resizeable,width=" + width + ",height=" + height);
    newWindow.document.title = title;
}
