/*
* Copyright (c) 2008, University of Cincinnati
* All rights reserved.
* See LICENSE file for important license information
*
* Portions Copyright (c) 2009, Interactive Mobile Solutions
* Use or distribution of IMS copyrighted software 
* is not permissible without the explicit and written authorization of IMS.
*/

function confirmClick(e, msg)
{
	if (!msg) msg = 'Are you sure?';
    if (!confirm(msg)) {
        e.stopPropagation();
        return false;
    }
    
    return true;
}

function mobilAP_init()
{
	$('.confirm').click(confirmClick);
}

$(mobilAP_init);