function Instructions(strURL)
{
 var wdwFeatures;
 var wdwFeatures = "width=640,"      +
                   "height=480,"     +
                   "location=no,"    +
                   "menubar=yes,"    +
                   "resizable=no,"   +
                   "scrollbars=yes," +
                   "status=yes,"     +
                   "titlebar=no"     +
                   "toolbar=no";
 var wdwInstructions = window.open(strURL, "_blank", wdwFeatures);
 wdwInstructions.location.href(strURL);

 return null;
}

function Download(strURL, strFile)
{
 var msgSaved, msgNotSaved;
 var strURL, strFile;
 var wdwFeatures = "width=640,"      +
                   "height=480,"     +
                   "location=no,"    +
                   "menubar=no,"     +
                   "resizable=no,"   +
                   "scrollbars=yes," +
                   "status=yes,"     +
                   "titlebar=no"     +
                   "toolbar=no";

 msgSaved    = "File has been successfully downloaded! ";

 msgNotSaved = "You have opted not to proceed with the " +
               "Election Results Data Download. "        + "\n" +
               "No data has been downloaded onto your "  +
               "local drive.";

 var wdwDownload = window.open(strURL, "_blank", wdwFeatures);

 wdwDownload.location.reload(true);

 var docSaved = wdwDownload.document.execCommand("SaveAs", true, strFile);

 wdwDownload.close();

 if (docSaved)
 {
    window.alert(msgSaved);
 }
 else
 {
    window.alert(msgNotSaved);
 }

 return null;

}
