﻿//Open a Document
function OpenDocument( documentUrl )
{
    var newWindow = window.open( documentUrl );
    //do not cause a postback
    return false;
}

if (typeof(Sys) !== "undefined") Sys.Application.notifyScriptLoaded();