function __doPostBack(eventTarget, eventArgument) 
{
	var theForm= document.forms['phpaspform'];
	if(!theForm)
	    theForm= document.aspnetForm;
	
    if(!theForm.onsubmit || (theForm.onsubmit() != false)) 
    {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
function confirmAction($url, $msg)
{
	if(window.confirm($msg))
		window.location.href= $url;
}

