
var addItemURL = '/my_garage/add_item.pl?TYPE=';

function add_spec_mygarage(vehicleID) {
    var popup_width=300;
    var popup_height=200;
    var leftPos = 0;
    var topPos = 0;
    if (screen) {
    leftPos = (screen.width - popup_width) / 2;
    topPos = (screen.height - popup_height) / 2;
    }
    window.open(addItemURL+'SPECCAR&vehicle_id='+vehicleID,"AddItem",
    'width='+popup_width+',height='+popup_height+',left='+leftPos+',top='+topPos);

//    window.open(addItemURL+'SPECCAR&vehicle_id='+vehicleID,"AddItem","top=200,left=300,width=300,height=200,buttons=no,scrollbars=no,location=no,menubar=yes,resizable=no,status=no,directories=no,toolbar=yes");

}


function add_forsale_mygarage(d_id, v_id) {
    var popup_width=300;
    var popup_height=200;
    var leftPos = 0;
    var topPos = 0;
    if (screen) {
    leftPos = (screen.width - popup_width) / 2;
    topPos = (screen.height - popup_height) / 2;
    }

    window.open(addItemURL+'STOCKCAR&d_id='+d_id+'&v_id='+v_id,"AddItem",'width='+popup_width+',height='+popup_height+',left='+leftPos+',top='+topPos);
}

function add_article_mygarage(articleID) {
    var popup_width=300;
    var popup_height=200;
    var leftPos = 0;
    var topPos = 0;
    if (screen) {
    leftPos = (screen.width - popup_width) / 2;
    topPos = (screen.height - popup_height) / 2;
    }


    window.open(addItemURL+'ARTICLE&ID='+articleID,"AddItem",'width='+popup_width+',height='+popup_height+',left='+leftPos+',top='+topPos);

}



