﻿function LeavingAlert(productURL,resellerURL) {
    var answer = confirm("You are about to visit an Authorized Reseller's website \n and leave the JPRO Fleet Products website.\n\nClick OK to proceed or Cancel to view our list of Authorized Resellers.");
    if (answer) {
        window.location = "http://www.jprofleetproducts.com/includes/leaving_alert_tracker.asp?productURL=" + productURL;
    } else {
        window.location = resellerURL;
    }
}
