﻿// JScript File

function disableFlash(url) {
    if (url != null) {
        window.location.href = url + "?fl=off";
    }
    else {
        window.location.href = "/?fl=off";
    }
   return true;
}
