﻿function showTickets(sEventID)
{
    window.location = '/viewtickets.aspx?&eventID=' + sEventID
}
function vieweventsIni()
{
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequest);
}
function endRequest(sender, e)
{
    if(e.get_error())
    {
       //if there was an error during the ajaxpost back reset the page
       window.location = window.location;
    }
}
