
// Purpose  : Provide javascript support for the PostBackUrl fix when Url Rewritter is working.
//
// History  : 
// 30 Apr 2008  Tomasz Izydorczyk    Created.

function RewritePostBackUrl(postBackUrl) {

    // Get the main postback form
    var theForm = document.forms['aspnetForm']; 
    if (!theForm) { 
        theForm = document.aspnetForm; 
    }
    
    if (theForm) { 
        theForm.action = postBackUrl; 
    }
}

