/**
 * BASE javascript file for Live Logik projects
 */
 
 /* TODO: build this out with project scripts */
 
/* function to confirm delete on forms */
function confirmDelete(string)
{
    var agree = confirm("Are you sure you would like to delete this " + string + "?");
	if(agree)
    {
	    return true;
    }else{
	    return false;
    }
}
 
 /* end */