function downloadDocument(fileToDownload)
{
    if (document.frames) {top.frames[0].location = "downloadDocument.asp?fileToDownload=" + fileToDownload ;}
    else {parent.window.open(fileToDownload,"loadPDF","height=500,width=500,status=yes,toolbar=yes,menubar=yes,location=no");}
}